* doc/headers/assert.texi (assert.h): Document assert module use.
[gnulib.git] / lib / stdlib_.h
index 5a23da1..c947c1d 100644 (file)
 
 #if defined __need_malloc_and_calloc
 /* Special invocation convention inside glibc header files.  */
+
+/* This #pragma avoids a warning with "gcc -Wall" on some glibc systems
+   on which <stdlib.h> has an inappropriate declaration, see
+   <http://sourceware.org/bugzilla/show_bug.cgi?id=1079>.  */
+#ifdef __GNUC__
+# pragma GCC system_header
+#endif
+
 #include @ABSOLUTE_STDLIB_H@
+
 #else
 /* Normal invocation convention.  */
+
+#if defined __DECC && __DECC_VER >= 60000000
+# include_next <stdlib.h>
+#endif
+
 #ifndef _GL_STDLIB_H
 #define _GL_STDLIB_H
 
-#include @ABSOLUTE_STDLIB_H@
+/* This #pragma avoids a warning with "gcc -Wall" on some glibc systems
+   on which <stdlib.h> has an inappropriate declaration, see
+   <http://sourceware.org/bugzilla/show_bug.cgi?id=1079>.  */
+#ifdef __GNUC__
+# pragma GCC system_header
+#endif
+
+#if !(defined __DECC && __DECC_VER >= 60000000)
+# include @ABSOLUTE_STDLIB_H@
+#endif
 
 
 /* The definition of GL_LINK_WARNING is copied here.  */
 #ifndef EXIT_SUCCESS
 # define EXIT_SUCCESS 0
 #endif
+/* Tandem/NSK and other platforms that define EXIT_FAILURE as -1 interfere
+   with proper operation of xargs.  */
 #ifndef EXIT_FAILURE
 # define EXIT_FAILURE 1
+#elif EXIT_FAILURE != 1
+# undef EXIT_FAILURE
+# define EXIT_FAILURE 1
 #endif
 
 
@@ -44,6 +72,30 @@ extern "C" {
 #endif
 
 
+#if @GNULIB_GETSUBOPT@
+/* Assuming *OPTIONP is a comma separated list of elements of the form
+   "token" or "token=value", getsubopt parses the first of these elements.
+   If the first element refers to a "token" that is member of the given
+   NULL-terminated array of tokens:
+     - It replaces the comma with a NUL byte, updates *OPTIONP to point past
+       the first option and the comma, sets *VALUEP to the value of the
+       element (or NULL if it doesn't contain an "=" sign),
+     - It returns the index of the "token" in the given array of tokens.
+   Otherwise it returns -1, and *OPTIONP and *VALUEP are undefined.
+   For more details see the POSIX:2001 specification.
+   http://www.opengroup.org/susv3xsh/getsubopt.html */
+# if !@HAVE_GETSUBOPT@
+extern int getsubopt (char **optionp, char *const *tokens, char **valuep);
+# endif
+#elif defined GNULIB_POSIXCHECK
+# undef getsubopt
+# define getsubopt(o,t,v) \
+    (GL_LINK_WARNING ("getsubopt is unportable - " \
+                      "use gnulib module getsubopt for portability"), \
+     getsubopt (o, t, v))
+#endif
+
+
 #if @GNULIB_MKDTEMP@
 # if !@HAVE_MKDTEMP@
 /* Create a unique temporary directory from TEMPLATE.
@@ -56,11 +108,12 @@ extern char * mkdtemp (char *template);
 #elif defined GNULIB_POSIXCHECK
 # undef mkdtemp
 # define mkdtemp(t) \
-    (GL_LINK_WARNING ("mkdtemp is unportable - "\
+    (GL_LINK_WARNING ("mkdtemp is unportable - " \
                       "use gnulib module mkdtemp for portability"), \
      mkdtemp (t))
 #endif
 
+
 #if @GNULIB_MKSTEMP@
 # if @REPLACE_MKSTEMP@
 /* Create a unique temporary file from TEMPLATE.
@@ -74,11 +127,14 @@ extern char * mkdtemp (char *template);
    set.  */
 #  define mkstemp rpl_mkstemp
 extern int mkstemp (char *template);
+# else
+/* On MacOS X 10.3, only <unistd.h> declares mkstemp.  */
+#  include <unistd.h>
 # endif
 #elif defined GNULIB_POSIXCHECK
 # undef mkstemp
 # define mkstemp(t) \
-    (GL_LINK_WARNING ("mkstemp is unportable - "\
+    (GL_LINK_WARNING ("mkstemp is unportable - " \
                       "use gnulib module mkstemp for portability"), \
      mkstemp (t))
 #endif