Fixed MSVC not knowing of ssize_t.

This commit is contained in:
n-a-c-h
2005-06-03 01:34:14 +00:00
parent 0df0a3980b
commit 925c2ea53f

View File

@@ -38,6 +38,10 @@ using namespace std;
#define SLASH_STR "/"
#endif
#ifdef MSC_VER
typedef ssize_t int;
#endif
#define LINE_LENGTH 2048*10
char line[LINE_LENGTH];