diff options
author | Paul Smith <psmith@gnu.org> | 2000-06-19 21:22:44 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2000-06-19 21:22:44 +0000 |
commit | 0d70d054586cf2e718aacd5fccfc47e32975b092 (patch) | |
tree | 32fb96cf9f4774e02ed385228361ad31cc4bb901 /make.h | |
parent | f04e78f11bb42e911a62c52c410575f602d8dec5 (diff) | |
download | gunmake-0d70d054586cf2e718aacd5fccfc47e32975b092.tar.gz |
* Various fixes for problems in the 3.79.0.1 pretest.
Diffstat (limited to 'make.h')
-rw-r--r-- | make.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -39,6 +39,11 @@ Boston, MA 02111-1307, USA. */ # define PARAMS(protos) () #endif /* C++ or ANSI C. */ +/* Specify we want GNU source code. This must be defined before any + system headers are included. */ + +#define _GNU_SOURCE 1 + /* Include libintl.h, if it was found: we don't even look for it unless we want to use the system's gettext(). If not, use the included gettext.h. */ @@ -77,7 +82,6 @@ Boston, MA 02111-1307, USA. */ # define __NO_STRING_INLINES #endif -#define _GNU_SOURCE 1 #include <sys/types.h> #include <sys/stat.h> #include <signal.h> |