1 | #include <misc/sys/auxv.h> |
---|---|
2 | |
3 | #ifndef _ISOMAC |
4 | |
5 | extern __typeof (getauxval) __getauxval; |
6 | libc_hidden_proto (__getauxval) |
7 | |
8 | /* Like getauxval, but writes the value to *RESULT and returns true if |
9 | found, or returns false. Does not set errno. */ |
10 | _Bool __getauxval2 (unsigned long int type, unsigned long int *result); |
11 | libc_hidden_proto (__getauxval2) |
12 | |
13 | #endif /* !_ISOMAC */ |
14 |