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