/****************************************************************************** * * a.exec.h * * Internal (kernel) format of an a.out header. * * 5.0 IPC Header File * * ************************************************************ * * "(c) Copyright Hewlett-Packard Company, 1985. All * * * rights are reserved. Copying or other reproduction * * * of this program except for archival purposes is * * * prohibited without the prior written consent of * * * Hewlett-Packard Company." * * ************************************************************ * *****************************************************************************/ struct exec { /* a.out header */ long a_magic; /* magic number */ long a_text; /* size of text segment */ long a_data; /* size of initialized data */ long a_bss; /* size of uninitialized data */ long a_syms; /* size of symbol table */ long a_trsize; /* size of text relocation */ long a_drsize; /* size of data relocation */ long a_entry; /* entry point */ };