about summary refs log tree commit diff
path: root/include/sys/auxv.h
Commit message (Collapse)AuthorAgeFilesLines
* Add a way to bypass the PLT when calling getauxvalTulio Magno Quites Machado Filho2017-06-091-0/+7
| | | | | | * include/sys/auxv.h (__getauxval): Add a prototype and its libc_hidden_proto. * misc/getauxval.c (__getauxval): Use libc_hidden_def.
* Add sys/auxv.h wrapper to include/sys/Aurelien Jarno2016-03-081-0/+1
The GNU libc testsuite fails to build on powerpc/ppc64/ppc64le with the following error: ../sysdeps/powerpc/test-get_hwcap.c:26:22: fatal error: sys/auxv.h: No such file or director This is because test-get_hwcap.c includes <sys/auxv.h>, but we don't provide a wrapper in include/sys. This patch adds one. Changelog: * include/sys/auxv.h: New file.