From: ceriel Date: Thu, 19 Sep 1991 10:47:01 +0000 (+0000) Subject: Added some decls X-Git-Tag: release-5-5~843 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=80e3ee2e79fc62b26f61519da090de1d3aa5c3b8;p=ack.git Added some decls --- diff --git a/lib/minix/include/sys/types.h b/lib/minix/include/sys/types.h index de5a9b9e8..f0f4285d0 100644 --- a/lib/minix/include/sys/types.h +++ b/lib/minix/include/sys/types.h @@ -22,6 +22,19 @@ typedef unsigned int size_t; /* type returned by sizeof */ typedef long time_t; /* time in sec since 1 Jan 1970 0000 GMT */ #endif +typedef unsigned char u_char; +typedef unsigned short u_short; +typedef unsigned int u_int; +typedef unsigned long u_long; + +/* system V compatibility: */ +typedef unsigned int uint; +typedef unsigned short ushort; +typedef unsigned char uchar_t; +typedef short cnt_t; +typedef long paddr_t; +typedef long key_t; + /* Types used in disk, inode, etc. data structures. */ typedef short dev_t; /* holds (major|minor) device pair */ typedef char gid_t; /* group id */