1abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes/****************************************************************************
2abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ****************************************************************************
3abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ***
4abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ***   This header was automatically generated from a Linux kernel header
5abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ***   of the same name, to make information necessary for userspace to
6abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ***   call into the kernel available to libc.  It contains only constants,
7abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ***   structures, and macros generated from the original header, and thus,
8abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ***   contains no copyrightable information.
9abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ***
10abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ***   To edit the content of this header, modify the corresponding
11abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ***   source file (e.g. under external/kernel-headers/original/) then
12abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ***   run bionic/libc/kernel/tools/update_all.py
13abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ***
14abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ***   Any manual change here will be lost the next time this script will
15abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ***   be run. You've been warned!
16abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ***
17abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ****************************************************************************
18abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes ****************************************************************************/
19abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes#ifndef _ASM_X86_A_OUT_H
20abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes#define _ASM_X86_A_OUT_H
21abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughesstruct exec
22abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes{
23abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes unsigned int a_info;
25abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes unsigned a_text;
26abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes unsigned a_data;
27abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes unsigned a_bss;
28abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
29abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes unsigned a_syms;
30abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes unsigned a_entry;
31abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes unsigned a_trsize;
32abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes unsigned a_drsize;
33abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes};
35abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes#define N_TRSIZE(a) ((a).a_trsize)
36abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes#define N_DRSIZE(a) ((a).a_drsize)
37abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes#define N_SYMSIZE(a) ((a).a_syms)
38abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
39abd626117cfd366faa16a5d0ac4621f608a5c887Elliott Hughes#endif
40