2
0
mirror of https://frontier.innolan.net/github/amigaos-binutils.git synced 2025-11-23 06:57:28 +00:00
Files
amigaos-binutils/gprof/cg_dfn.h
2006-03-15 23:16:57 +00:00

18 lines
293 B
C

#ifndef cg_dfn_h
#define cg_dfn_h
/*
* Flags which mark a symbol as topologically ``busy'' or as
* topologically ``not_numbered'':
*/
#define DFN_BUSY -1
#define DFN_NAN 0
/*
* Depth-first numbering of a call-graph.
*/
extern void cg_dfn PARAMS ((Sym * root));
#endif /* cg_dfn_h */