Source to include/mach/aout.h
0001 #ifndef _AOUT_H
0002 #define _AOUT_H
0003 /*
0004 * aout.h
0005 * A very abbreviated notion of what an a.out header looks like
0006 */
0007 struct aout {
0008 unsigned long
0009 a_info, /* Random stuff, already checked */
0010 a_text, /* length of text in bytes */
0011 a_data, /* length of data in bytes */
0012 a_bss, /* length of bss, in bytes */
0013 a_syms, /* symbol stuff, ignore */
0014 a_entry, /* entry point */
0015 a_trsize, /* relocation stuff, ignore */
0016 a_drsize; /* ...ditto */
0017 };
0018
0019 #endif /* _AOUT_H */