]> granicus.if.org Git - graphviz/commitdiff
remove internal definitions of NULL
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 31 Mar 2021 02:08:49 +0000 (19:08 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 6 Apr 2021 02:32:50 +0000 (19:32 -0700)
ISO C guarantees this to exist via stddef.h or stdlib.h.

lib/common/logic.h
lib/sfio/sfio.h
tclpkg/tclhandle/tclhandle.h

index 209382504ea07d5d7dd78c8f9bb97def98c2374f..17f48f77f3558d58244c21e2098a8678c721912d 100644 (file)
@@ -32,10 +32,6 @@ extern "C" {
 #define NOTUSED(var) (void) var
 #endif
 
-#ifndef NULL
-#define NULL (void *)0
-#endif
-
 #ifndef NIL
 #define NIL(type) ((type)0)
 #endif
index 75238495e339d566e3c0a821cb94500b8f98c0fd..116a7ceaca4d0c6f09406752a7025b0afe14a085 100644 (file)
@@ -184,9 +184,6 @@ extern "C" {
 #define SFFMT_SET      07777770        /* flags settable on calling extf      */
 
 /* various constants */
-#ifndef NULL
-#define NULL           0
-#endif
 #ifndef EOF
 #define EOF            (-1)
 #endif
index 1e26bee80b7443430ce585c120637afd428f7f34..d425108e532bcdae1e247f0ef1d9738e5d6f77c5 100644 (file)
@@ -20,10 +20,6 @@ extern "C" {
 #define TCL_OK (0)
 #endif
 
-#ifndef NULL
-#define NULL (0)
-#endif
-
 #define ISSPACE(c) (isspace ((unsigned char) c))
 
 /*