blob: 7d45774ee921364ea4469a2b9fbc804f03d7786b [file] [log] [blame]
Elliott Hughes180edef2023-11-02 00:08:05 +00001/*
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 */
Elliott Hughesabd62612013-11-08 11:45:48 -08007#ifndef _ASM_X86_A_OUT_H
8#define _ASM_X86_A_OUT_H
Tao Baod7db5942015-01-28 10:07:51 -08009struct exec {
10 unsigned int a_info;
Tao Baod7db5942015-01-28 10:07:51 -080011 unsigned a_text;
12 unsigned a_data;
13 unsigned a_bss;
14 unsigned a_syms;
Tao Baod7db5942015-01-28 10:07:51 -080015 unsigned a_entry;
16 unsigned a_trsize;
17 unsigned a_drsize;
Elliott Hughesabd62612013-11-08 11:45:48 -080018};
19#define N_TRSIZE(a) ((a).a_trsize)
20#define N_DRSIZE(a) ((a).a_drsize)
21#define N_SYMSIZE(a) ((a).a_syms)
Elliott Hughesabd62612013-11-08 11:45:48 -080022#endif