aboutsummaryrefslogtreecommitdiff
path: root/contrib/atf
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>2012-11-15 04:42:30 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>2012-11-15 04:42:30 +0000
commit8017b8a3c16277b8fd189fef55256ead89afde46 (patch)
tree4d6de05a9f3b2bc68327c0a2b793044fadbb5953 /contrib/atf
parentffdac8145e83edb90ccfb0eb651480c2242fa4fd (diff)
downloadsrc-8017b8a3c16277b8fd189fef55256ead89afde46.tar.gz
src-8017b8a3c16277b8fd189fef55256ead89afde46.zip
The *_STR* macros use strcmp() to check their arguments. Include string.h
to have this definition available. Upstream commit: 1dc1884f778f88811583e6a54610a6d7e421ca63 Submitted by: Garrett Cooper <yanegomi@gmail.com>
Notes
Notes: svn path=/head/; revision=243054
Diffstat (limited to 'contrib/atf')
-rw-r--r--contrib/atf/atf-c/macros.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/atf/atf-c/macros.h b/contrib/atf/atf-c/macros.h
index 12f7488b6b9c..7afe9e8925e1 100644
--- a/contrib/atf/atf-c/macros.h
+++ b/contrib/atf/atf-c/macros.h
@@ -30,6 +30,8 @@
#if !defined(ATF_C_MACROS_H)
#define ATF_C_MACROS_H
+#include <string.h>
+
#include <atf-c/defs.h>
#include <atf-c/error.h>
#include <atf-c/tc.h>