Skip to content
Snippets Groups Projects
Commit 5ea13a92 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Resolve some MSVC warnings by including missing header files

parent 161a02b4
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
...@@ -21,6 +21,8 @@ ...@@ -21,6 +21,8 @@
#include <windows.h> /* INPUT_RECORD, etc. */ #include <windows.h> /* INPUT_RECORD, etc. */
#include <genwrap.h> #include <genwrap.h>
#include <stdio.h> /* stdin */ #include <stdio.h> /* stdin */
#include <stdlib.h> /* atexit */
#if defined(_WIN32) #if defined(_WIN32)
#include <malloc.h> /* alloca() on Win32 */ #include <malloc.h> /* alloca() on Win32 */
#endif #endif
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
#include <math.h> #include <math.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h>
#include <genwrap.h> #include <genwrap.h>
#include <xp_dl.h> #include <xp_dl.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment