Home
       linenum.h - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       linenum.h (315B)
       ---
            1 /* This file is inspired in the book "Understanding and using COFF" */
            2 
            3 struct lineno {
            4         long l_symndx;         /* index in table symbol if l_lnno == 0 */
            5         long l_paddr;          /* Break pointable address if l_lnno > 0 */
            6         unsigned short l_lnno; /* Line number */
            7 };
            8 
            9 #define LINENO struct lineno
           10 #define LINESZ 6