Module: wine Branch: master Commit: b648c9281192b24b6dbfd739e37a4860adcb3c9f URL: https://source.winehq.org/git/wine.git/?a=commit;h=b648c9281192b24b6dbfd739e...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Mar 4 17:22:28 2020 +0100
msvcrt20: Use __[w]getmainargs declarations from headers.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/msvcrt20/msvcrt20.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/dlls/msvcrt20/msvcrt20.c b/dlls/msvcrt20/msvcrt20.c index 3cb1e678c1..21a3027423 100644 --- a/dlls/msvcrt20/msvcrt20.c +++ b/dlls/msvcrt20/msvcrt20.c @@ -20,14 +20,10 @@
#include <stdarg.h> #include <math.h> +#include <process.h>
#include "windef.h"
-extern void CDECL __getmainargs(int *argc, char** *argv, char** *envp, - int expand_wildcards, int *new_mode); -extern void CDECL __wgetmainargs(int *argc, WCHAR** *wargv, WCHAR** *wenvp, - int expand_wildcards, int *new_mode); - /********************************************************************* * __getmainargs (MSVCRT20.@) *