xref: /original-bsd/usr.bin/pascal/src/pstab.h (revision f0fd5f8a)
1     /*	static	char sccsid[] = "@(#)pstab.h 1.3 07/29/82"; */
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 #define	N_PLDATA	0xb	/* library variable */
19 #define	N_PLTEXT	0xc	/* library routine */
20