diff --git a/reactos/lib/crtdll/conio/cscanf.c b/reactos/lib/crtdll/conio/cscanf.c index 0118e3e52e5..42a877954c9 100644 --- a/reactos/lib/crtdll/conio/cscanf.c +++ b/reactos/lib/crtdll/conio/cscanf.c @@ -1,5 +1,6 @@ #include #include +#include int _cscanf(char *fmt, ...) @@ -9,12 +10,10 @@ _cscanf(char *fmt, ...) va_list ap; //fixme cscanf should scan the console's keyboard - - va_start(ap, fmt); - cnt = __vscanf(fmt, ap); - va_end(ap); + va_start(ap, fmt); + cnt = __vscanf(fmt, ap); + va_end(ap); return cnt; - }