MSVC fixes. Frederic: MSVC has no ssize_t type

This commit is contained in:
ehofman 2005-10-06 08:25:14 +00:00
parent bbde16dc08
commit 6bb9080017
2 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,7 @@
# include <io.h>
#endif
#include <simgear/misc/stdint.hxx>
#include <simgear/debug/logstream.hxx>
#include "sg_file.hxx"

View File

@ -56,6 +56,8 @@ typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef unsigned __int64 uint64_t;
typedef int ssize_t;
#elif defined(sgi)
# include <sys/types.h>
#else