ack/mach/arm/cv/arm.h
1988-02-18 10:22:14 +00:00

35 lines
527 B
C

#define MAXCHUNK 5
#define NSECT 4
struct entry{
char chunkid[8];
long offset;
long size;
};
struct armhead{
long chunkfileid;
long maxchunks;
long numchunks;
struct entry entries[MAXCHUNK];
};
struct chunkhead{
long objtype;
long versionid;
long narea;
long nsymb;
long entrya;
long entryo;
};
struct areadec{
long name;
long atal;
long size;
long nrel;
long base;
};