Pristine Ack-5.5
[Ack-5.5.git] / include / _tail_cc / sys / stdtypes.h
1 /* $Id: stdtypes.h,v 1.6 1994/06/24 13:20:42 ceriel Exp $ */
2
3 /* This include file exists so that <sys/types.h> can still safely be
4    included. On a SUN, this would cause problems because sometimes time_t
5    and/or size_t were defined twice.
6 */
7
8 #ifndef __STDTYPES_H__
9 #define __STDTYPES_H__
10
11 typedef long    sigset_t;       /* for <signal.h> on SUN's */
12 #ifndef __STDC__
13 typedef long    time_t;
14 typedef long    size_t;
15 typedef long    clock_t;
16 #endif
17 typedef int     pid_t;
18 typedef unsigned short  gid_t;
19 typedef unsigned short  uid_t;
20 typedef unsigned int    speed_t;
21 typedef unsigned long   tcflag_t;
22 typedef unsigned char   cc_t;
23
24
25 #endif  /* __STDTYPES_H__ */