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 >
Wrap
Text File
|
1997-10-29
|
454b
|
26 lines
/* mac06ゥ1997 by HNS/DSITRI hns@computer.org
** linenum.h
*/
#ifdef __SC__ /* Symantec C++ for PowerPC 8.0 */
#pragma options align=mac68k
#endif
struct lineno
{
union
{
long l_symndx; /* if l_lnno == 0 */
long l_paddr; /* else */
} l_addr;
unsigned short l_lnno; /* line number */
};
#define LINENO struct lineno
#define LINESZ sizeof(LINENO)
#ifdef __SC__ /* Symantec C++ for PowerPC 8.0 */
#pragma options align=reset
#endif
/* EOF */