Fix compilation errors on FreeBSD.
[wine] / include / msvcrt / sys / types.h
1 /*
2  * _stat() definitions
3  *
4  * Copyright 2000 Francois Gouget.
5  */
6 #ifndef __WINE_SYS_TYPES_H
7 #define __WINE_SYS_TYPES_H
8 #define __WINE_USE_MSVCRT
9
10
11 #ifdef USE_MSVCRT_PREFIX
12 #define MSVCRT(x)    MSVCRT_##x
13 #else
14 #define MSVCRT(x)    x
15 #endif
16
17
18 typedef unsigned int   _dev_t;
19 typedef unsigned short _ino_t;
20 typedef int            _off_t;
21 typedef long           MSVCRT(time_t);
22
23
24 #ifndef USE_MSVCRT_PREFIX
25 #define dev_t _dev_t
26 #define ino_t _ino_t
27 #define off_t _off_t
28 #endif /* USE_MSVCRT_PREFIX */
29
30 #endif /* __WINE_SYS_TYPES_H */