Browse Source

Added missing include file for windows after include the "sleep" function.

mingodad 13 years ago
parent
commit
3f65a4b6f9
1 changed files with 5 additions and 1 deletions
  1. 5 1
      sqstdlib/sqstdsystem.cpp

+ 5 - 1
sqstdlib/sqstdsystem.cpp

@@ -3,7 +3,11 @@
 #include <time.h>
 #include <time.h>
 #include <stdlib.h>
 #include <stdlib.h>
 #include <stdio.h>
 #include <stdio.h>
-#include <sqstdsystem.h>
+#include <sqstdsystem.h>
+
+#ifdef _WIN32
+#include <windows.h>
+#endif
 
 
 #ifdef SQUNICODE
 #ifdef SQUNICODE
 #include <wchar.h>
 #include <wchar.h>