aouthdr(4) aouthdr(4)NAME aouthdr - a.out header for common object files SYNOPSIS #include <aouthdr.h> DESCRIPTION aouthdr is an optional a.out header for common object files. The C structure follows: /* * static char ID_aouth[] = "@(#)aouthdr.h 2.1 "; */ typedef struct aouthdr { short magic; /* see magic.h */ short vstamp; /* version stamp */ long tsize; /* text size in bytes, padded to FW bdry */ long dsize; /* initialized data " " */ long bsize; /* uninitialized data " " */ #ifdef u3b long dum1; long dum2; /*Pad to entry point */ #endif long entry; /* entry pt. */ long text_start;/* base of text used for this file */ long data_start;/* base of data used for this file */ } AOUTHDR; SEE ALSO a.out(4) January 1992 1