1/* Imitation sys/types.h. */
2
3#ifndef __SYS_TYPES_H__
4#define __SYS_TYPES_H__
5
6#include <Types.h>
7
8typedef short dev_t;
9typedef short ino_t;
10typedef unsigned short mode_t;
11typedef unsigned short uid_t;
12typedef unsigned short gid_t;
13typedef long off_t;
14
15#endif /* __SYS_TYPES_H__ */
16