]> granicus.if.org Git - graphviz/commitdiff
Remove define and usage of HAVE_STDLIB_H
authorErwin Janssen <erwinjanssen@outlook.com>
Sun, 18 Sep 2016 12:19:02 +0000 (14:19 +0200)
committerErwin Janssen <erwinjanssen@outlook.com>
Sun, 18 Sep 2016 12:19:02 +0000 (14:19 +0200)
The header stdlib.h is always present since we are compiling with standard C.
There is no need for this check, since it will always evaluate to true.

12 files changed:
cmd/lefty/dot2l/dotparse.y
cmd/lefty/ws/x11/libfilereq/Dir.c
cmd/lefty/ws/x11/libfilereq/Path.c
cmd/lefty/ws/x11/libfilereq/SelFile.c
cmd/tools/convert.h
config.iffe
configure.ac
lib/common/render.h
lib/fdpgen/tlayout.c
plugin/pango/gvrender_pango.c
windows/cmd/lefty/dot2l/dotparse.c
windows/include/config.h

index 8e2dc3bc5c420e6e0608227296b465f879b6ef35..38fa60a284a845cf4ebcc99c62fa641333615bca 100644 (file)
@@ -22,10 +22,7 @@ typedef void *Tobj;
 #include "config.h"
 #include "dot2l.h"
 
-#ifdef HAVE_STDLIB_H
-# include <stdlib.h>
-#endif
-
+#include <stdlib.h>
 #include <string.h>
 
 static char portstr[SMALLBUF];
index fba3004eab8e3de4f7ebd0139c6b7350716ecd51..12a55b7da262a297c71f58a6b6a2f2350a142c69 100644 (file)
@@ -79,9 +79,7 @@
 extern void qsort ();
 #endif /* defined (SVR4) || defined (SYSV) || defined (USG) */
 
-#ifdef HAVE_STDLIB_H
-# include <stdlib.h>
-#endif
+#include <stdlib.h>
 
 #include "SFDecls.h"
 
index 496855e23dc4365285b943657e50a512f8485b63..2f604f5792c73a3591ead37d578975e1d80be14d 100644 (file)
@@ -58,9 +58,7 @@ extern uid_t getuid ();
 extern void qsort ();
 #endif /* defined (SVR4) || defined (SYSV) || defined (USG) */
 
-#ifdef HAVE_STDLIB_H
 #include <stdlib.h>
-#endif
 
 #include "SFDecls.h"
 
index 094e56cfab1b5256ee43168e1efc960228923aa1..e76d97d05692c81c0ad51d17a53f9c3a69e3e971 100644 (file)
@@ -101,9 +101,7 @@ extern char *sys_errlist[];
 extern char *getwd (char *);
 #endif /* !defined (SVR4) && !defined (SYSV) && !defined (USG) */
 
-#ifdef HAVE_STDLIB_H
-# include <stdlib.h>
-#endif
+#include <stdlib.h>
 
 #ifdef HAVE_STDINT_H
 #include <stdint.h>
index 6872e8c4c7e66659038d3784b03596242759ad1a..17731bd58cc45fa8ca7cee00ce4e1d5a48df83d7 100644 (file)
@@ -21,9 +21,7 @@ extern "C" {
 #include "config.h"
 
 #include <stdio.h>
-#ifdef HAVE_STDLIB_H
 #include <stdlib.h>
-#endif
 #include <string.h>
 
 #include "cgraph.h"
index 665b38c4dbdaebdc94093a73df283bc5e1587abf..ffd964a6eb0ad5b8e45fc1cc5bf5ae7521f61fc0 100644 (file)
@@ -39,7 +39,6 @@ hdr stdarg
 hdr stdbool
 hdr stddef
 hdr stdint
-hdr stdlib
 hdr string
 hdr strings
 hdr termios
@@ -84,9 +83,7 @@ else {
 endif
 
 link{
-    #if HAVE_STDLIB_H
     #include <stdlib.h>
-    #endif
     #if HAVE_STDINT_H
     #include <stdint.h>
     #endif
index 3777adebba3a1afbe1036913dc58876e0539e35e..bb37409d2a42cc65d618a18667fb525738bbe398 100644 (file)
@@ -425,7 +425,7 @@ dnl -----------------------------------
 dnl Checks for header files
 
 # AC_HEADER_STDC
-AC_CHECK_HEADERS(stdarg.h stddef.h stddef.h stdlib.h stdint.h malloc.h \
+AC_CHECK_HEADERS(stdarg.h stddef.h stddef.h stdint.h malloc.h \
        fcntl.h search.h pthread.h values.h float.h limits.h termios.h \
        errno.h time.h unistd.h fenv.h string.h strings.h inttypes.h setjmp.h \
        sys/time.h sys/times.h sys/types.h sys/select.h fpu_control.h \
index 0d3374de46c508db61b92e1ba893e427e37cd88c..55c732733e9b9715562d4c0a42d886963ed65a01 100644 (file)
@@ -22,7 +22,6 @@ extern "C" {
 #ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
 #endif
-#ifdef HAVE_STDLIB_H
 #if !defined(WIN32) && !defined(DARWIN)
 #define __USE_GNU
 #include <stdlib.h>
@@ -30,7 +29,6 @@ extern "C" {
 #else
 #include <stdlib.h>
 #endif
-#endif
 #ifdef HAVE_STDDEF_H
 #include <stddef.h>
 #endif
index ff36f8d81d41ae4d3de9b02e78a987786102e472..643e6ddab51519377ec6359997f058a4dc2b0239 100644 (file)
@@ -33,9 +33,7 @@
 #ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
 #endif
-#ifdef HAVE_STDLIB_H
 #include <stdlib.h>
-#endif
 #include <time.h>
 #ifndef WIN32
 #include <unistd.h>
index 03115b1cc0966183a39e97fe329f19ed7c47cca7..a08664ff7445c9e0b21d37bcca16c0b55159247d 100644 (file)
@@ -13,9 +13,7 @@
 
 #include "config.h"
 
-#ifdef HAVE_STDLIB_H
 #include <stdlib.h>
-#endif
 #ifdef HAVE_STRING_H
 #include <string.h>
 #endif
index dea835695c881ca58d1e273c7d709e780edddb7e..1a402d726727e9874ea6e16ef8c74e35c066d20c 100644 (file)
@@ -87,9 +87,7 @@ typedef void *Tobj;
 
 #include "dot2l.h"
 
-#ifdef HAVE_STDLIB_H
-# include <stdlib.h>
-#endif
+#include <stdlib.h>
 #include <string.h>
 
 static char portstr[SMALLBUF];
index 4485bc4db5fd3d436fafecb0bd0009550058563e..cfdcc8aca6684b2fb1f78c01c88cb4e12585e695 100644 (file)
 /* Define to 1 if you have the <stdint.h> header file. */
 //#define HAVE_STDINT_H 1
 
-/* Define to 1 if you have the <stdlib.h> header file. */
-#define HAVE_STDLIB_H 1
-
 /* Define to 1 if you have the `strcasecmp' function. */
 //#define HAVE_STRCASECMP 1