-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstructs.h
executable file
·30 lines (24 loc) · 1.23 KB
/
structs.h
1
/* @(#)structs.h ( vax ) ver 1.4 created at 8/16/86 *//******************************************************************************//* *//* S T R U C T U R E D E F I N E S *//* *//******************************************************************************/#ifndef STRUCTS_H#define STRUCTS_Htypedef char BOOL;typedef char *STRING;typedef struct map MAP;typedef struct nlist SYMTAB;typedef struct exec_struct TXTHDR;typedef struct relocation_info RELINFO;struct map { unsigned long b1; /* Beginning of text segment */ unsigned long e1; /* End of text segment */ unsigned long f1; /* File offset for text segment */ unsigned long b2; /* Beginning of data segment */ unsigned long e2; /* End of data segment */ unsigned long f2; /* File offset for data segment */ };#define TXTHDRSIZ ( sizeof ( TXTHDR ) )#endif