fix freebsd libfat compiling?

This commit is contained in:
zeromus 2011-03-24 21:51:17 +00:00
parent a070dc091b
commit 9e70ebca45
1 changed files with 3 additions and 1 deletions

View File

@ -65,8 +65,10 @@ struct _reent {
#ifdef __APPLE__
typedef __darwin_mode_t mode_t;
#else
#elif defined(_MSC_VER)
typedef uint32_t mode_t;
#else
#include <sys/types.h>
#endif
struct DIR_ITER {