xref: /original-bsd/usr.bin/pascal/src/pstab.h (revision 0b685140)
1     /*	static	char sccsid[] = "@(#)pstab.h 1.2 09/09/80"; */
2 
3     /*
4      *	subtypes within the above type
5      *	subtypes N_PSO and N_PSOL are	.stabs	name,,0,subtype,0
6      *	others subtypes are		.stabs	name,,0,subtype,line
7      */
8 #define	N_PSO		0x1	/* source file name */
9 #define	N_PSOL		0x2	/* include file name */
10 #define	N_PGLABEL	0x3	/* global label */
11 #define	N_PGCONST	0x4	/* global constant */
12 #define	N_PGTYPE	0x5	/* global type */
13 #define	N_PGVAR		0x6	/* global variable */
14 #define	N_PGFUNC	0x7	/* global function */
15 #define	N_PGPROC	0x8	/* global procedure */
16 #define	N_PEFUNC	0x9	/* external function */
17 #define	N_PEPROC	0xa	/* external procedure */
18