mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
18 lines
200 B
C
18 lines
200 B
C
#ifndef _SYS_AUXV_H
|
|
#define _SYS_AUXV_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <elf.h>
|
|
#include <bits/hwcap.h>
|
|
|
|
unsigned long getauxval(unsigned long);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|