From b648c9281192b24b6dbfd739e37a4860adcb3c9f Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Wed, 4 Mar 2020 17:22:28 +0100 Subject: [PATCH] msvcrt20: Use __[w]getmainargs declarations from headers. Signed-off-by: Jacek Caban Signed-off-by: Alexandre Julliard --- 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 3cb1e678c10..21a30274232 100644 --- a/dlls/msvcrt20/msvcrt20.c +++ b/dlls/msvcrt20/msvcrt20.c @@ -20,14 +20,10 @@ #include #include +#include #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.@) *