2016-03-08 14:16:40 +00:00
|
|
|
#include <misc/sys/auxv.h>
|
2017-06-09 17:36:22 +00:00
|
|
|
|
|
|
|
#ifndef _ISOMAC
|
|
|
|
|
|
|
|
extern __typeof (getauxval) __getauxval;
|
|
|
|
libc_hidden_proto (__getauxval)
|
|
|
|
|
2020-10-27 09:42:10 +00:00
|
|
|
/* 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)
|
|
|
|
|
2017-06-09 17:36:22 +00:00
|
|
|
#endif /* !_ISOMAC */
|