Date: Thu, 15 Nov 2012 04:42:30 +0000 (UTC) From: Marcel Moolenaar <marcel@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r243054 - head/contrib/atf/atf-c Message-ID: <201211150442.qAF4gUg6018718@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211150442.qAF4gUg6018718>