CVSROOT: /sources/m4 Module name: m4 Changes by: Eric Blake <ericb> 06/10/19 13:38:46
Index: m4/system_.h =================================================================== RCS file: /sources/m4/m4/m4/system_.h,v retrieving revision 1.16 retrieving revision 1.17 diff -u -b -r1.16 -r1.17 --- m4/system_.h 29 Sep 2006 12:26:07 -0000 1.16 +++ m4/system_.h 19 Oct 2006 13:38:46 -0000 1.17 @@ -27,10 +27,12 @@ #ifndef M4_SYSTEM_H #define M4_SYSTEM_H 1 -#include <stdlib.h> -#include <stdio.h> #include <ctype.h> +#include <stdio.h> +#include <stdlib.h> #include <sys/types.h> +#include <unistd.h> + @INCLUDE_ERROR_H@ @INCLUDE_OBSTACK_H@ @INCLUDE_REGEX_H@ @@ -52,11 +54,11 @@ # ifdef ENABLE_NLS # include <libintl.h> # define _(Text) gettext (Text) +# define N_(Text) gettext_noop (Text) # else # define _(Text) (Text) +# define N_(Text) (Text) # endif -# define gettext_noop(Text) Text -# define N_(Text) gettext_noop (Text) #endif
