I need to return 0 after execve. Always, its not matter is there successfull or error. Just return 0. But after i use execve the program return nothing at all (execve return only errors and in my case there is no error, so nothing to return).
Here is my code example:
execve(program,args,null);
return(0); <-- this does not work!