build: include cfg.mk in the distribution tarball
[gzip.git] / primos / include / sysTypes.h
blobec6c5b1531a98ab4b9243b27473ab9bca8f54eeb
1 /*
2 ** sys/types.h
3 **
4 ** Emulation of the Unix sys/types.h header file for PRIMOS
5 **
6 ** Author: Peter Eriksson <pen@lysator.liu.se>
7 */
9 #ifndef __SYS_TYPES_H__
10 #define __SYS_TYPES_H__
12 typedef long size_t;
13 typedef long time_t;
15 typedef long off_t;
16 typedef short dev_t;
17 typedef short ino_t;
18 typedef short mode_t;
19 typedef short uid_t;
20 typedef short gid_t;
22 typedef char *caddr_t;
24 #endif