[__GO32__]: If HAVE_TEMIOS_H is defined, declare readline_default_bindings.
[deliverable/binutils-gdb.git] / gprof / cg_arcs.h
index 132ee73667a67d8a8e5ffc0dc3a0aa2b4b5bfd75..caa0197a2bb489cb48e8eb2a6043691f5d60d216 100644 (file)
@@ -15,7 +15,7 @@ typedef struct arc
   {
     Sym *parent;               /* source vertice of arc */
     Sym *child;                        /* dest vertice of arc */
-    int count;                 /* # of calls from parent to child */
+    unsigned long count;       /* # of calls from parent to child */
     double time;               /* time inherited along arc */
     double child_time;         /* child-time inherited along arc */
     struct arc *next_parent;   /* next parent of CHILD */
@@ -24,13 +24,13 @@ typedef struct arc
   }
 Arc;
 
-extern int num_cycles;         /* number of cycles discovered */
+extern unsigned int num_cycles;        /* number of cycles discovered */
 extern Sym *cycle_header;      /* cycle headers */
 
-extern void arc_add PARAMS ((Sym * parent, Sym * child, int count));
+extern void arc_add PARAMS ((Sym * parent, Sym * child, unsigned long count));
 extern Arc *arc_lookup PARAMS ((Sym * parent, Sym * child));
 extern Sym **cg_assemble PARAMS ((void));
 extern Arc **arcs;
-extern int numarcs;
+extern unsigned int numarcs;
 
 #endif /* cg_arcs_h */
This page took 0.022704 seconds and 4 git commands to generate.