Initial revision
[binutils.git] / gprof / cg_dfn.h
blob4bd3030257c87a25585f31d3c4898fe68df109db
1 #ifndef cg_dfn_h
2 #define cg_dfn_h
4 /*
5 * Flags which mark a symbol as topologically ``busy'' or as
6 * topologically ``not_numbered'':
7 */
8 #define DFN_BUSY -1
9 #define DFN_NAN 0
12 * Depth-first numbering of a call-graph.
15 extern void cg_dfn PARAMS ((Sym * root));
17 #endif /* cg_dfn_h */