]> granicus.if.org Git - graphviz/commitdiff
Fix declaration of Verbose in sparse lib to fit with the one in common/globals.h
authorEmden R. Gansner <erg@research.att.com>
Mon, 12 Aug 2013 21:05:57 +0000 (17:05 -0400)
committerEmden R. Gansner <erg@research.att.com>
Mon, 12 Aug 2013 21:05:57 +0000 (17:05 -0400)
lib/sparse/DotIO.c
lib/sparse/SparseMatrix.c
lib/sparse/general.h

index 738062a0a1415bc1c0c5378b35d7c9df1442b10d..45d484311503e6911ac055f5b60936328e3e7739 100644 (file)
@@ -27,6 +27,12 @@ typedef struct {
 
 #define ND_id(n)  (((Agnodeinfo_t*)((n)->base.data))->id)
 
+void
+initGraph (Agraph_t* g)
+{
+    aginit(g, AGNODE, "nodeinfo", sizeof(Agnodeinfo_t), TRUE);
+}
+
 #if 0
 static void
 posStr (int len_buf, char* buf, int dim, real* x, double sc)
index 2c6914762e0b34f6b3c78715584675b15f0c468c..c077ce92627bd552b4e7bea19f89b14b4b81a91e 100644 (file)
@@ -25,8 +25,6 @@
 #include "PriorityQueue.h"
 #endif
 
-extern int Verbose;
-
 static size_t size_of_matrix_type(int type){
   int size = 0;
   switch (type){
index 0d5e656a96732cf1b6571f1268138e8be99c3d6b..054f58fef4938c0b21b7c51a7b1f25ad1d6c6843 100644 (file)
@@ -27,7 +27,7 @@
 #include <logic.h>
 #include <arith.h>
 #include <memory.h>
-#endif
+#endif  /* STANDALONE */
 
 #define real double
 
@@ -62,9 +62,7 @@
 
 typedef unsigned int boolean;
 
-extern int Verbose;
-
-#else
+#else  /* STANDALONE */
 #define MALLOC gmalloc
 #define REALLOC grealloc
 #endif    /* STANDALONE */
@@ -80,6 +78,8 @@ extern int Verbose;
 extern double _statistics[10];
 #endif
 
+extern unsigned char Verbose;
+
 extern int irand(int n);
 extern real drand(void);
 extern int *random_permutation(int n);/* random permutation of 0 to n-1 */