getauxval.cpp 203 B

12345678910
  1. #include <sys/auxv.h>
  2. #include "glibc.h"
  3. #include "features.h"
  4. extern "C" {
  5. unsigned long getauxval(unsigned long item) noexcept {
  6. return NUbuntuCompat::GetGlibc().GetAuxVal(item);
  7. }
  8. }