diff options
author | Paul Smith <psmith@gnu.org> | 2004-03-04 13:42:51 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2004-03-04 13:42:51 +0000 |
commit | e3e3f15ebcbe29bed87354c317824c95cac427c4 (patch) | |
tree | d039e8f0ca3413f7ca9c81df1cc15aa6b6d6cab6 /make.h | |
parent | 59306b02234da9c144f70e55d38ef2e91e5113f0 (diff) | |
download | gunmake-e3e3f15ebcbe29bed87354c317824c95cac427c4.tar.gz |
Updates to automate generation of GNU upload artifacts.
Fix a problem compiling on old, pre-ANSI systems. getloadavg test is still
broken, but make builds.
Document a breakage on SunOS 4.x systems.
Diffstat (limited to 'make.h')
-rw-r--r-- | make.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -387,7 +387,7 @@ struct floc #define STRING_SIZE_TUPLE(_s) (_s), (sizeof (_s)-1) -/* We have to have both stdarg.h or varargs.h AND v*printf or doprnt to use +/* We have to have stdarg.h or varargs.h AND v*printf or doprnt to use variadic versions of these functions. */ #if HAVE_STDARG_H || HAVE_VARARGS_H @@ -396,7 +396,7 @@ struct floc # endif #endif -#if __STDC__ && USE_VARIADIC +#if __STDC__ && USE_VARIADIC && HAVE_STDARG_H extern void message (int prefix, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 2, 3))); extern void error (const struct floc *flocp, const char *fmt, ...) |