2014-04-07 06:46:15 +00:00
|
|
|
#ifndef _SYS_AUXV_H
|
|
|
|
#define _SYS_AUXV_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <elf.h>
|
2016-10-09 18:42:02 +00:00
|
|
|
#include <bits/hwcap.h>
|
2014-04-07 06:46:15 +00:00
|
|
|
|
|
|
|
unsigned long getauxval(unsigned long);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|