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



On 2006-11-25, Ronald <followait@xxxxxxx> wrote:
I tried to locate execv using:
(in the glib source dir)
grep "int execv" * -r
grep "int __execv" * -r

but failed.

prototypes need not be on a single line, or may have several spaces
keywrds or macros between the type and name; eg:

int
execv ( ....


I doubt it's very interesting reading, according to the man page it
basically just and calls execve with the current environment.

Bye.
Jasen
.