home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1999 February / MACPOWER-1999-02.ISO.7z / MACPOWER-1999-02.ISO / 9902⁄AMUG / UTILITY / mac06-0.95.sit / mac06-0.95 / usr / include / coff / linenum.h < prev    next >
Text File  |  1997-10-29  |  454b  |  26 lines

  1. /* mac06ゥ1997 by HNS/DSITRI hns@computer.org
  2. ** linenum.h
  3. */
  4.  
  5. #ifdef __SC__    /* Symantec C++ for PowerPC 8.0 */
  6. #pragma options align=mac68k
  7. #endif
  8.  
  9. struct lineno
  10.     {
  11.     union
  12.         {
  13.         long    l_symndx;    /* if l_lnno == 0 */
  14.         long    l_paddr;    /* else */
  15.         } l_addr;
  16.     unsigned short    l_lnno;    /* line number */
  17.     };
  18.  
  19. #define LINENO    struct lineno
  20. #define LINESZ    sizeof(LINENO)
  21.  
  22. #ifdef __SC__    /* Symantec C++ for PowerPC 8.0 */
  23. #pragma options align=reset
  24. #endif
  25.  
  26. /* EOF */