1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

Add a way to bypass the PLT when calling getauxval

* include/sys/auxv.h (__getauxval): Add a prototype and its
	libc_hidden_proto.
	* misc/getauxval.c (__getauxval): Use libc_hidden_def.
This commit is contained in:
Tulio Magno Quites Machado Filho
2017-06-09 14:36:22 -03:00
parent a17973efc6
commit d6bd839b9a
3 changed files with 14 additions and 0 deletions

View File

@ -43,3 +43,4 @@ __getauxval (unsigned long int type)
}
weak_alias (__getauxval, getauxval)
libc_hidden_def (__getauxval)