blob: 6aecff73be37bfe5f87e0b9104919bd293a0c6df [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/****************************************************************************
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
15struct 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