You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
385 B
19 lines
385 B
/*
|
|
* Copyright (C) 2004 Fujitsu Siemens Computers GmbH
|
|
* Author: Bodo Stroesser <bstroesser@fujitsu-siemens.com>
|
|
* Licensed under the GPL
|
|
*/
|
|
|
|
#ifndef __ELF_USER_H__
|
|
#define __ELF_USER_H__
|
|
|
|
/* For compilation on a host that doesn't support AT_SYSINFO (Linux 2.4) */
|
|
|
|
#ifndef AT_SYSINFO
|
|
#define AT_SYSINFO 32
|
|
#endif
|
|
#ifndef AT_SYSINFO_EHDR
|
|
#define AT_SYSINFO_EHDR 33
|
|
#endif
|
|
|
|
#endif
|
|
|