svn commit: r243054 - head/contrib/atf/atf-c

Marcel Moolenaar marcel at FreeBSD.org
Thu Nov 15 04:42:31 UTC 2012


Author: marcel
Date: Thu Nov 15 04:42:30 2012
New Revision: 243054
URL: http://svnweb.freebsd.org/changeset/base/243054

Log:
  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 at gmail.com>

Modified:
  head/contrib/atf/atf-c/macros.h

Modified: head/contrib/atf/atf-c/macros.h
==============================================================================
--- head/contrib/atf/atf-c/macros.h	Thu Nov 15 04:39:23 2012	(r243053)
+++ head/contrib/atf/atf-c/macros.h	Thu Nov 15 04:42:30 2012	(r243054)
@@ -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>


More information about the svn-src-head mailing list