Re: How to locate implementation of a specific function in glibc source code?



Hi Ronald,

I tried to locate execv using:
(in the glib source dir)
grep "int execv" * -r
grep "int __execv" * -r

but failed.

Try at the top directory of the glibc source:
find . -name "*.c" | xargs fgrep -l "execv"

HTH,
Loic.

.