Add a missing stdio.h include.

The code happened to compile without this include on Cygwin and MSYS2,
the original MSYS/MinGW toolchain rejects it.
This commit is contained in:
Ryan Prichard 2015-12-14 03:03:04 -06:00
parent fa84d20933
commit 876836b824

View File

@ -21,6 +21,7 @@
#include "InputMap.h"
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>