1 /* static char sccsid[] = "@(#)pstab.h 1.1 09/05/80"; */ 2 3 /* 4 * the new .stab type for pascal separate compilation type checking 5 */ 6 #define N_PC 0x30 /* global pascal symbol: name,,0,subtype,line */ 7 8 /* 9 * subtypes within the above type 10 * subtypes N_PSO and N_PSOL are .stabs name,,0,subtype,0 11 * others subtypes are .stabs name,,0,subtype,line 12 */ 13 #define N_PSO 0x1 /* source file name */ 14 #define N_PSOL 0x2 /* include file name */ 15 #define N_PGLABEL 0x3 /* global label */ 16 #define N_PGCONST 0x4 /* global constant */ 17 #define N_PGTYPE 0x5 /* global type */ 18 #define N_PGVAR 0x6 /* global variable */ 19 #define N_PGFUNC 0x7 /* global function */ 20 #define N_PGPROC 0x8 /* global procedure */ 21 #define N_PEFUNC 0x9 /* external function */ 22 #define N_PEPROC 0xa /* external procedure */ 23