From 21ada94c4b8c01589367cea300916d7db8461ae7 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 7 Apr 2014 02:46:15 -0400 Subject: add getauxval function in a sense this implementation is incomplete since it doesn't provide the HWCAP_* macros for use with AT_HWCAP, which is perhaps the most important intended usage case for getauxval. they will be added at a later time. --- include/sys/auxv.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/sys/auxv.h (limited to 'include') diff --git a/include/sys/auxv.h b/include/sys/auxv.h new file mode 100644 index 00000000..6dcf9adc --- /dev/null +++ b/include/sys/auxv.h @@ -0,0 +1,16 @@ +#ifndef _SYS_AUXV_H +#define _SYS_AUXV_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include + +unsigned long getauxval(unsigned long); + +#ifdef __cplusplus +} +#endif + +#endif -- cgit v1.2.1