msvcrt: Rename _execve to MSVCRT__execve.

This commit is contained in:
Tijl Coosemans 2006-08-09 21:28:52 +02:00 committed by Alexandre Julliard
parent 83c30a55b8
commit 7c69033b0a
2 changed files with 2 additions and 2 deletions

View file

@ -211,7 +211,7 @@
@ varargs _execlp(str str)
@ varargs _execlpe(str str)
@ cdecl _execv(str str)
@ cdecl _execve(str str str)
@ cdecl _execve(str str str) MSVCRT__execve
@ cdecl _execvp(str str)
@ cdecl _execvpe(str str str)
@ cdecl _exit(long) MSVCRT__exit

View file

@ -295,7 +295,7 @@ MSVCRT_intptr_t CDECL _execv(const char* name, char* const* argv)
* Like on Windows, this function does not handle arguments with spaces
* or double-quotes.
*/
MSVCRT_intptr_t CDECL _execve(const char* name, char* const* argv, const char* const* envv)
MSVCRT_intptr_t CDECL MSVCRT__execve(const char* name, char* const* argv, const char* const* envv)
{
return _spawnve(MSVCRT__P_OVERLAY, name, (const char* const*) argv, envv);
}