From 4a56a16205508ef7d8b0f4fc2ee36bd6c52f3cca Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Mon, 21 May 2012 11:26:24 -0700 Subject: * misc/getauxval.c (__getauxval): Use unsigned long int. * misc/sys/auxv.h: Include . (getauxval): Use unsigned long int. --- misc/sys/auxv.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'misc/sys') diff --git a/misc/sys/auxv.h b/misc/sys/auxv.h index a70fb37f87..34df04a6e2 100644 --- a/misc/sys/auxv.h +++ b/misc/sys/auxv.h @@ -20,14 +20,15 @@ #define _SYS_AUXV_H 1 #include +#include #include __BEGIN_DECLS /* Return the value associated with an Elf*_auxv_t type from the auxv list - passed to the program on startup. If __type was not present in the auxv + passed to the program on startup. If TYPE was not present in the auxv list, returns zero. */ -extern unsigned long getauxval (unsigned long __type) +extern unsigned long int getauxval (unsigned long int __type) __THROW __attribute_const__; __END_DECLS -- cgit v1.2.3