1 /**************************************************************************** 2 **************************************************************************** 3 *** 4 *** This header was automatically generated from a Linux kernel header 5 *** of the same name, to make information necessary for userspace to 6 *** call into the kernel available to libc. It contains only constants, 7 *** structures, and macros generated from the original header, and thus, 8 *** contains no copyrightable information. 9 *** 10 **************************************************************************** 11 ****************************************************************************/ 12 #ifndef _ASM_X86_A_OUT_H 13 #define _ASM_X86_A_OUT_H 14 15 struct exec 16 { 17 unsigned int a_info; 18 unsigned a_text; 19 unsigned a_data; 20 unsigned a_bss; 21 unsigned a_syms; 22 unsigned a_entry; 23 unsigned a_trsize; 24 unsigned a_drsize; 25 }; 26 27 #define N_TRSIZE(a) ((a).a_trsize) 28 #define N_DRSIZE(a) ((a).a_drsize) 29 #define N_SYMSIZE(a) ((a).a_syms) 30 31 #endif 32