]> granicus.if.org Git - graphviz/commitdiff
Surrounded _PACKAGE_ast with defined() where needed.
authorErwin Janssen <erwinjanssen@outlook.com>
Mon, 11 Jul 2016 19:14:18 +0000 (21:14 +0200)
committerErwin Janssen <erwinjanssen@outlook.com>
Fri, 22 Jul 2016 12:26:04 +0000 (14:26 +0200)
This solves more than a thousend Wundef warnings.

18 files changed:
cmd/lefty/dot2l/dotparse.y
lib/agraph/agraph.h
lib/cdt/cdt.h
lib/cgraph/cgraph.h
lib/graph/graph.h
lib/graph/libgraph.h
lib/neatogen/matinv.c
lib/sfio/sfhdr.h
lib/sfio/sfio.h
lib/sfio/sfmode.c
lib/sfio/sfpkrd.c
lib/sfio/sfpopen.c
lib/sfio/sftmp.c
lib/sfio/vthread.h
lib/vmalloc/malloc.c
lib/vmalloc/vmalloc.h
lib/vmalloc/vmexit.c
lib/vmalloc/vmhdr.h

index 212f2b81f5524bf93a3e5750e5e72f9f373133ec..8e2dc3bc5c420e6e0608227296b465f879b6ef35 100644 (file)
@@ -12,7 +12,7 @@
  *************************************************************************/
 
 %{
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 #include <ast.h>
 #endif
 #include <stdio.h>
index b13234fa6311df4b617f372de6cbcbd7a0f8a2b8..fc458c04a2c4923c9aeac0ab3f2d8186c6c27b50 100644 (file)
@@ -230,7 +230,7 @@ for the name. */
     };
 
 
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 /* fine control of object callbacks */
 #   if defined(_BLD_agraph) && defined(__EXPORT__)
 #      define extern  __EXPORT__
@@ -395,7 +395,7 @@ for the name. */
 #define aghead(e)              AGHEAD(e)
 #define agopp(e)               AGOPP(e)
 
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 #   if !defined(_BLD_agraph) && defined(__IMPORT__)
 #      define extern  __IMPORT__
 #   endif
@@ -408,7 +408,7 @@ for the name. */
        Agstrictundirected;
 
 #undef extern
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
      _END_EXTERNS_
 #endif
 #ifdef __cplusplus
index e19404e1270cd4738307be1d23914cfa910b95aa..323f983e495f54b311aaa7562445b7f3c2bba308 100644 (file)
@@ -240,7 +240,7 @@ extern int          dtstat _ARG_((Dt_t*, Dtstat_t*, int));
 extern unsigned int    dtstrhash _ARG_((unsigned int, Void_t*, int));
 
 #if 0
-#if !_PACKAGE_ast
+#if !defined(_PACKAGE_ast)
 extern int             memcmp _ARG_((const Void_t*, const Void_t*, size_t));
 extern int             strcmp _ARG_((const char*, const char*));
 #endif
index 1e9f9241ee705d6928b781efb9b0437dd8dd67b3..61a3650ccad11deb4f9a997d93f6d2f083741570 100644 (file)
@@ -255,7 +255,7 @@ struct Agraph_s {
 };
 
 
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 /* fine control of object callbacks */
 #   if defined(_BLD_cgraph) && defined(__EXPORT__)
 #      define extern  __EXPORT__
@@ -427,7 +427,7 @@ extern agusererrf agseterrf(agusererrf);
 #define TAILPORT_ID            "tailport"
 #define HEADPORT_ID            "headport"
 
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 #   if !defined(_BLD_cgraph) && defined(__IMPORT__)
 #      define extern  __IMPORT__
 #   endif
@@ -470,7 +470,7 @@ and edges are embedded in main graph objects but allocated separately in subgrap
 #define EDGEOF(sn,rep)         (AGSNMAIN(sn)?((Agedge_t*)((unsigned char*)(rep) - offsetof(Agedge_t,seq_link))) : ((Dthold_t*)(rep))->obj)
 
 #undef extern
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 _END_EXTERNS_
 #endif
 #ifdef __cplusplus
index 9b788fba297a664e8b74e0d0e93da8a97bb10e12..029d088a0a2a7b61691ca2433838295f04255035 100644 (file)
@@ -16,7 +16,7 @@
 #ifndef _GRAPH_H
 #define _GRAPH_H 1
 
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 #include    <ast.h>
 #else
 #include <sys/types.h>
@@ -122,7 +122,7 @@ extern "C" {
        Agproto_t *prev;
     };
 
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
      _BEGIN_EXTERNS_           /* public data */
 #if _BLD_graph && defined(__EXPORT__)
 #define extern  __EXPORT__
@@ -229,7 +229,7 @@ extern "C" {
 #define agmetanode(g)          ((g)->meta_node)
 
 #undef extern
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
      _END_EXTERNS_
 #endif
 #ifdef __cplusplus
index 0b30b850b6f13a7c5bebed07f45cfa8afe396c39..3e54a63e1638b4a009a13feffed45feb38451a19 100644 (file)
@@ -19,7 +19,7 @@ extern "C" {
 #ifndef _LIBGRAPH_H
 #define _LIBGRAPH_H 1
 
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 #include    <ast.h>
 #else
 #include <stdarg.h>
index 25f197f70159c3b8df30125277e0e6832821e0e8..0f3bf1f017edea72921a918143b10eee55d44b7e 100644 (file)
@@ -34,7 +34,7 @@
  *     n    - the order of the matrices A and Ainv
  */
 
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 #include <ast.h>
 #else
 #endif
index 80907db108776b6c16296a03f90eecd0a5801d63..88552b0a8ff1ccecf1100d4fe3de8781a5ccee32 100644 (file)
@@ -32,7 +32,7 @@ extern "C" {
 #include       <vthread.h>
 
 /* file system info */
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 
 #include       <ast.h>
 #include       <ast_time.h>
@@ -47,7 +47,7 @@ extern "C" {
 #define _lib_locale    1
 #endif
 
-#else                          /*!_PACKAGE_ast */
+#else                          /*!defined(_PACKAGE_ast) */
 
 #if __mips == 2 && !defined(_NO_LARGEFILE64_SOURCE)
 #define _NO_LARGEFILE64_SOURCE  1
@@ -143,7 +143,7 @@ extern "C" {
 #include       <unistd.h>
 #endif
 
-#endif /*_PACKAGE_ast*/
+#endif /*defined(_PACKAGE_ast)*/
 
 #include       <errno.h>
 #include       <ctype.h>
@@ -459,7 +459,7 @@ extern "C" {
 #define ESPIPE 29
 #endif
 /* see if we can use memory mapping for io */
-#if !_PACKAGE_ast && _mmap_worthy
+#if !defined(_PACKAGE_ast) && _mmap_worthy
 #      ifdef _LARGEFILE64_SOURCE
 #              undef   mmap
 #      endif
@@ -823,7 +823,7 @@ extern "C" {
 
 #define        SF_RADIX        64      /* maximum integer conversion base */
 
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 #define SF_MAXINT      INT_MAX
 #define SF_MAXLONG     LONG_MAX
 #else
@@ -928,7 +928,7 @@ extern "C" {
 #define max(x,y)       ((x) > (y) ? (x) : (y))
 
 /* fast functions for memory copy and memory clear */
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 #define memclear(s,n)  memzero(s,n)
 #else
 #if _lib_bcopy && !_lib_memcpy
@@ -939,7 +939,7 @@ extern "C" {
 #else
 #define memclear(s,n)  memset((s),'\0',(n))
 #endif
-#endif /*_PACKAGE_ast*/
+#endif /*defined(_PACKAGE_ast)*/
 
 /* note that MEMCPY advances the associated pointers */
 #define MEMCPY(to,fr,n) \
@@ -1000,7 +1000,7 @@ extern "C" {
     extern int munmap _ARG_((Void_t *, size_t));
 #endif
 
-#if !_PACKAGE_ast
+#if !defined(_PACKAGE_ast)
 
 #if /*!__STDC__ &&*/ !_hdr_stdlib
     extern void abort _ARG_((void));
@@ -1089,7 +1089,7 @@ extern "C" {
     extern int open _ARG_((const char *, int, ...));
 #endif
 
-#endif                         /* _PACKAGE_ast */
+#endif                         /* defined(_PACKAGE_ast) */
 
      _END_EXTERNS_
 #endif /*_SFHDR_H*/
index 2945f6ed67db3600460e1e633f9afa426c89a1b7..52f05503d64ea13eabe49a45eeca38c30c8bda29 100644 (file)
@@ -25,7 +25,7 @@ extern "C" {
 **     Written by Kiem-Phong Vo
 */
 
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 #include       <ast_std.h>
 #else
 #include       <ast_common.h>
@@ -93,7 +93,7 @@ extern "C" {
 #endif
 #endif
 
-#endif                         /* _PACKAGE_ast */
+#endif                         /* defined(_PACKAGE_ast) */
 
 /* Sfoff_t should be large enough for largest file address */
 
index 99c7a12923af73472bd8b2a7e1f9c1bc5acabf8f..2a84e86c064b4e659652a801aefcc871f83cc3a0 100644 (file)
@@ -34,7 +34,7 @@ static char *Version = "\n@(#)sfio (AT&T Labs - kpv) 2001-02-01\0\n";
 */
 
 /* the below is for protecting the application from SIGPIPE */
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 #include               <sig.h>
 #include               <wait.h>
 #define Sfsignal_f     Sig_handler_t
@@ -257,7 +257,7 @@ reg Sfio_t *f;                      /* stream to close */
            CLOSE(p->file);
 
        /* wait for process termination */
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
        sigcritical(1);
 #endif
 #ifndef WIN32
@@ -266,7 +266,7 @@ reg Sfio_t *f;                      /* stream to close */
 #endif
        if (pid < 0)
            status = -1;
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
        sigcritical(0);
 #endif
 
index cef096314beadb8b5bc1578efb5585198683fd7d..efd5bf608b84307f7f4804b3b753f8aec8d5d80b 100644 (file)
@@ -12,7 +12,7 @@
  *************************************************************************/
 
 #include       "sfhdr.h"
-#if !_PACKAGE_ast
+#if !defined(_PACKAGE_ast)
 #ifndef FIONREAD
 #if _sys_ioctl
 #include       <sys/ioctl.h>
index 28fd4d72123b635c38be0656fa943013b0516f6d..4f504da0fba2b15d45ab4cabde0552f939418dfa 100644 (file)
@@ -17,7 +17,7 @@
 **     Written by Kiem-Phong Vo.
 */
 
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 #include       <proc.h>
 #else
 
@@ -123,7 +123,7 @@ char *argcmd;
     _exit(EXIT_NOTFOUND);
 }
 
-#endif /*_PACKAGE_ast*/
+#endif /*defined(_PACKAGE_ast)*/
 
 #ifndef WIN32
 #if __STD_C
@@ -135,7 +135,7 @@ char *command;                      /* command to execute */
 char *mode;                    /* mode of the stream */
 #endif
 {
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
     reg Proc_t *proc;
     reg int sflags;
     reg long flags;
@@ -292,6 +292,6 @@ char *mode;                 /* mode of the stream */
        }
        return NIL(Sfio_t *);
     }
-#endif /*_PACKAGE_ast*/
+#endif /*defined(_PACKAGE_ast)*/
 }
 #endif
index 03ff62641793db85f48b5f6ec07d6b44a4b24677..60696d4f5ae1a114265948b7a759fe7a097182ea 100644 (file)
@@ -140,7 +140,7 @@ char *file;
     return 0;
 }
 
-#if !_PACKAGE_ast
+#if !defined(_PACKAGE_ast)
 #include       <time.h>
 #define                TMPDFLT         "/tmp"
 static char **Tmppath, **Tmpcur;
@@ -190,7 +190,7 @@ char *path;
     return dirs;
 }
 
-#endif                         /*!_PACKAGE_ast */
+#endif                         /*!defined(_PACKAGE_ast) */
 
 #if __STD_C
 static int _tmpfd(Sfio_t * f)
@@ -203,7 +203,7 @@ Sfio_t *f;
     reg int fd;
     int t;
 
-#if !_PACKAGE_ast
+#if !defined(_PACKAGE_ast)
     /* set up path of dirs to create temp files */
     if (!Tmppath && !(Tmppath = _sfgetpath("TMPPATH"))) {
        if (!(Tmppath = (char **) malloc(2 * sizeof(char *))))
@@ -224,12 +224,12 @@ Sfio_t *f;
        Tmpcur += 1;
     if (!Tmpcur || !Tmpcur[0])
        Tmpcur = Tmppath;
-#endif                         /*!_PACKAGE_ast */
+#endif                         /*!defined(_PACKAGE_ast) */
 
     file = NIL(char *);
     fd = -1;
     for (t = 0; t < 10; ++t) { /* compute a random name */
-#if !_PACKAGE_ast
+#if !defined(_PACKAGE_ast)
        static ulong Key, A;
        if (A == 0 || t > 0) {  /* get a quasi-random coefficient */
            reg int r;
@@ -246,7 +246,7 @@ Sfio_t *f;
                        Tmpcur[0], (Key >> 15) & 0x7fff, Key & 0x7fff);
 #else
        file = pathtmp(file, NiL, "sf", NiL);
-#endif                         /*!_PACKAGE_ast */
+#endif                         /*!defined(_PACKAGE_ast) */
 
        if (!file)
            return -1;
@@ -273,9 +273,9 @@ Sfio_t *f;
 
     if (fd >= 0)
        _rmtmp(f, file);
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
     free(file);
-#endif /*_PACKAGE_ast*/
+#endif /*defined(_PACKAGE_ast)*/
 
     return fd;
 }
index 2590c888d56c642e644991d04599484a84a2cfc3..1709ac066d763439cd29c600c4d5ba791aef3a07 100644 (file)
@@ -31,7 +31,7 @@ extern "C" {
 #include       <errno.h>
 
 /* ast doesn't do threads yet */
-#if _PACKAGE_ast && !defined(vt_threaded)
+#if defined(_PACKAGE_ast) && !defined(vt_threaded)
 #define vt_threaded     0
 #endif
 
index 86f335bf08f77197a15f9155c2d2e314ea67aa56..018e569df81d51d9179c0abfae9955e054b7fd6d 100644 (file)
@@ -159,7 +159,7 @@ char *file;
     }
 
     *next = '\0';
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
     return open(buf, O_WRONLY | O_CREAT | O_TRUNC, CREAT_MODE);
 #else
     return creat(buf, CREAT_MODE);
index 2a240273931b115ced909a72761ac6ce89664c42..d0fc27b424ad48c2ee37363c701946d0b60f5536 100644 (file)
@@ -25,7 +25,7 @@ extern "C" {
 
 #define VMALLOC_VERSION        19990805L
 
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 #include       <ast_std.h>
 #else
 #include       <ast_common.h>
index 99621567daf84036c66a9658669f595e926f38b3..0861dcfe260422c89802e0657e74548fc47b9e88 100644 (file)
@@ -17,7 +17,7 @@
 **     Any required functions for process exiting.
 **     Written by Kiem-Phong Vo, kpv@research.att.com (05/25/93).
 */
-#if _PACKAGE_ast || _lib_atexit
+#if defined(_PACKAGE_ast) || _lib_atexit
 int Vm_atexit_already_defined;
 #else
 
index d27389a8c27c433ed7c0b76e7c930aa07c798f0c..b014b2eed0bf1cdd39dc2c8ba14c880aefd6873e 100644 (file)
@@ -30,7 +30,7 @@ extern "C" {
 */
 
 
-#if _PACKAGE_ast
+#if defined(_PACKAGE_ast)
 
 #if defined(__STDPP__directive) && defined(__STDPP__hide)
     __STDPP__directive pragma pp:hide getpagesize
@@ -51,7 +51,7 @@ extern "C" {
 #include       <ast_common.h>
 #include       "FEATURE/vmalloc"
 
-#endif /*_PACKAGE_ast*/
+#endif /*defined(_PACKAGE_ast)*/
 
 #undef free
 #undef malloc
@@ -435,7 +435,7 @@ extern "C" {
      _BEGIN_EXTERNS_ extern Vmextern_t _Vmextern;
 
 
-#if !_PACKAGE_ast
+#if !defined(_PACKAGE_ast)
 
     extern size_t getpagesize _ARG_((void));