shithub: scc

ref: fdc72651e2932eccc4a8ca5709546c2d7d1d0b6b
dir: /inc/coff32/linenum.h/

View raw version
/* This file is inspired in the book "Understanding and using COFF" */

struct lineno {
	long l_symndx;         /* index in table symbol if l_lnno == 0 */
	long l_paddr;          /* Break pointable address if l_lnno > 0 */
	unsigned short l_lnno; /* Line number */
};

#define LINENO struct lineno
#define LINESZ 6