blob: 66c3f05b4d9284a9e4929aef4809dd88a4902977 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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 (Sym * root);
#endif /* cg_dfn_h */
|