Wininterrupt: Add explicit stdlib.h include statement

strtoul is found in stdlib.h and with the llvm-mingw toolchain it
fails to compile due to the stdlib.h header not being indirectly
included.

Change-Id: I85fc5e5828c859572ff1ce2c050556bc087de277
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
Cristian Adam
2023-07-10 14:31:59 +02:00
parent 80196abd6f
commit c914e5f9c2

View File

@@ -11,6 +11,7 @@
#include <windows.h> #include <windows.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h>
/* To debug break a 64bit application under Windows, you must call /* To debug break a 64bit application under Windows, you must call
* DebugBreakProcess() from an 64bit apllication. Therefore: * DebugBreakProcess() from an 64bit apllication. Therefore: