Include stdint.h to provide int32_t.

* This fixed a libpconsole build error that happened with mingw-w64.
This commit is contained in:
Ryan Prichard 2012-03-21 03:30:18 -07:00
parent f66e877cba
commit d418679741
2 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <windows.h>
#include <vector>
#include <string>

View File

@ -2,6 +2,7 @@
#include <windows.h>
#include <assert.h>
#include <string.h>
#include <stdint.h>
#include <string>
#include <vector>
#include <sstream>