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