auxv.h 372 B

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