• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * This file is auto-generated. Modifications will be lost.
3  *
4  * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5  * for more information.
6  */
7 #ifndef _ASM_X86_A_OUT_H
8 #define _ASM_X86_A_OUT_H
9 struct exec {
10   unsigned int a_info;
11   unsigned a_text;
12   unsigned a_data;
13   unsigned a_bss;
14   unsigned a_syms;
15   unsigned a_entry;
16   unsigned a_trsize;
17   unsigned a_drsize;
18 };
19 #define N_TRSIZE(a) ((a).a_trsize)
20 #define N_DRSIZE(a) ((a).a_drsize)
21 #define N_SYMSIZE(a) ((a).a_syms)
22 #endif
23