Commit 7c69033b authored by Tijl Coosemans's avatar Tijl Coosemans Committed by Alexandre Julliard

msvcrt: Rename _execve to MSVCRT__execve.

parent 83c30a55
...@@ -211,7 +211,7 @@ ...@@ -211,7 +211,7 @@
@ varargs _execlp(str str) @ varargs _execlp(str str)
@ varargs _execlpe(str str) @ varargs _execlpe(str str)
@ cdecl _execv(str str) @ cdecl _execv(str str)
@ cdecl _execve(str str str) @ cdecl _execve(str str str) MSVCRT__execve
@ cdecl _execvp(str str) @ cdecl _execvp(str str)
@ cdecl _execvpe(str str str) @ cdecl _execvpe(str str str)
@ cdecl _exit(long) MSVCRT__exit @ cdecl _exit(long) MSVCRT__exit
......
...@@ -295,7 +295,7 @@ MSVCRT_intptr_t CDECL _execv(const char* name, char* const* argv) ...@@ -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 * Like on Windows, this function does not handle arguments with spaces
* or double-quotes. * 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); return _spawnve(MSVCRT__P_OVERLAY, name, (const char* const*) argv, envv);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment