Fixed some issues found by winapi_check.
[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
9 #ifdef USE_MSVCRT_PREFIX
10 #define MSVCRT(x)    MSVCRT_##x
11 #else
12 #define MSVCRT(x)    x
13 #endif
14
15
16 typedef unsigned short _dev_t;
17 typedef unsigned short _ino_t;
18 typedef int            _off_t;
19 typedef long           MSVCRT(time_t);
20
21
22 #ifndef USE_MSVCRT_PREFIX
23 #define dev_t _dev_t
24 #define ino_t _ino_t
25 #define off_t _off_t
26 #endif /* USE_MSVCRT_PREFIX */
27
28 #endif /* __WINE_SYS_TYPES_H */