repo.or.cz
/
gzip.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
build: include cfg.mk in the distribution tarball
[gzip.git]
/
primos
/
include
/
sysTypes.h
blob
ec6c5b1531a98ab4b9243b27473ab9bca8f54eeb
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
*/
8
9
#ifndef __SYS_TYPES_H__
10
#define __SYS_TYPES_H__
11
12
typedef
long size_t
;
13
typedef
long time_t
;
14
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
;
21
22
typedef
char
*
caddr_t
;
23
24
#endif
25