freebsd-nq/gprof/cg_dfn.h
Dimitry Andric ecb78adf80 Import the binutils-2_15-branch from the sourceware CVS repository,
exactly as it was on Sun, 23 May 2004 04:40:32 +0000.

Corresponds to git commit 242eda977694c559d7d21626702034c13d745597.
2010-10-17 21:56:26 +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 */