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



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

but failed.


.