2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 1994 - 1999, 2003 by Ralf Baechle
18 unsigned long a_info
; /* Use macros N_MAGIC, etc for access */
19 unsigned a_text
; /* length of text, in bytes */
20 unsigned a_data
; /* length of data, in bytes */
21 unsigned a_bss
; /* length of uninitialized data area for
23 unsigned a_syms
; /* length of symbol table data in file,
25 unsigned a_entry
; /* start address */
26 unsigned a_trsize
; /* length of relocation info for text, in
28 unsigned a_drsize
; /* length of relocation info for data, in bytes */
31 #define N_TRSIZE(a) ((a).a_trsize)
32 #define N_DRSIZE(a) ((a).a_drsize)
33 #define N_SYMSIZE(a) ((a).a_syms)
35 #endif /* _ASM_A_OUT_H */