Module: wine Branch: refs/heads/master Commit: 7c69033b0acb85206a2cb13f81678ecd7299a500 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=7c69033b0acb85206a2cb13f...
Author: Tijl Coosemans tijl@ulyssis.org Date: Wed Aug 9 21:28:52 2006 +0200
msvcrt: Rename _execve to MSVCRT__execve.
---
dlls/msvcrt/msvcrt.spec | 2 +- dlls/msvcrt/process.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/msvcrt/msvcrt.spec b/dlls/msvcrt/msvcrt.spec index 83b9580..5f4b61d 100644 --- a/dlls/msvcrt/msvcrt.spec +++ b/dlls/msvcrt/msvcrt.spec @@ -211,7 +211,7 @@ # extern _aexit_rtn @ 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 diff --git a/dlls/msvcrt/process.c b/dlls/msvcrt/process.c index 85a1e6c..b740bad 100644 --- a/dlls/msvcrt/process.c +++ b/dlls/msvcrt/process.c @@ -295,7 +295,7 @@ MSVCRT_intptr_t CDECL _execv(const char* * 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); }