blob: a3e028cdc6a2f9deab78d06c0a08b1a2af264821 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef _SYS_AUXV_H
#define _SYS_AUXV_H
#define AT_NULL 0
#include <abi-bits/auxv.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifndef __MLIBC_ABI_ONLY
// mlibc extension: Like getauxval but handles errors in a sane way.
// Success: Return 0.
// Failure: Return -1 and set errno.
int peekauxval(unsigned long type, unsigned long *value);
unsigned long getauxval(unsigned long type);
#endif /* !__MLIBC_ABI_ONLY */
#ifdef __cplusplus
} // extern "C"
#endif
#endif
|