source: trunk/third/gcc/sys-types.h @ 8834

Revision 8834, 4.2 KB checked in by ghudson, 28 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r8833, which included commits to RCS files with non-trunk default branches.
Line 
1enum clnt_stat { ___fake1 };
2enum auth_stat { ___fake2 };
3
4struct netconfig;
5struct netbuf;
6struct address;
7struct tm;
8struct ldfile;
9struct syment;
10struct stat;
11struct timeval;
12struct termios;
13struct tms;
14struct dma_cb;
15struct cred;
16struct vnode;
17struct vattr;
18struct uarg;
19struct statfs;
20struct statvfs;
21struct dirent;
22struct itimerval;
23struct mnttab;
24struct strbuf;
25struct vfstab;
26struct ldfile;
27struct syment;
28struct scnhdr;
29struct exception;
30struct nd_hostservlist;
31struct nd_hostserv;
32struct utsname;
33struct uio;
34struct pid;
35struct pollfd;
36struct nlist;
37struct passwd;
38struct spwd;
39struct flock;
40struct seg;
41struct sembuf;
42struct sigaction;
43struct utimbuf;
44struct map;
45struct filehdr;
46struct lineno;
47struct nd_addrlist;
48struct FTW;
49struct buf;
50struct ustat;
51struct qelem;
52struct prpsinfo;
53struct user;
54struct qelem;
55struct execenv;
56struct utmpx;
57
58struct direct;
59struct tm;
60struct stat;
61struct rlimit;
62struct rusage;
63struct sockaddr;
64struct sockaddr_in;
65struct timeval { int i; };
66struct exportent;
67struct fstab;
68struct hostent;
69struct in_addr { int i; };
70struct ldfile;
71struct mallinfo { int i; };
72struct mint;
73struct nmtent;
74struct netent;
75struct pmaplist;
76struct protoent;
77struct rpcent;
78struct servent;
79struct authdes_cred;
80struct rpc_err;
81struct ypall_callback;
82
83union wait;
84
85/* Get size_t and wchar_t.  */
86#include <stddef.h>
87
88/* #include "sys/types.h" */
89
90/* The actual types used here are mostly wrong,
91   but it is not supposed to matter what types we use here.  */
92
93typedef int dev_t;
94typedef int pid_t;
95typedef int gid_t;
96typedef int off_t;
97typedef int mode_t;
98typedef int uid_t;
99
100typedef int proc_t;
101typedef int time_t;
102typedef int addr_t;
103typedef int caddr_t;
104typedef int clock_t;
105typedef int div_t;
106typedef int ldiv_t;
107typedef int dl_t;
108typedef int major_t;
109typedef int minor_t;
110typedef int emcp_t;
111typedef int fpclass_t;
112typedef int index_t;
113typedef int ecb_t;
114typedef int aioop_t;
115typedef int evver_t;
116typedef int evcntlcmds_t;
117typedef int idtype_t;
118typedef int id_t;
119typedef int procset_t;
120typedef int hostid_t;
121typedef int evpollcmds_t;
122typedef int event_t;
123typedef int hrtime_t;
124typedef int evqcntlcmds_t;
125typedef int sigset_t;
126typedef int evsiginfo_t;
127typedef int evcontext_t;
128typedef int evta_t;
129typedef int speed_t;
130typedef int rlim_t;
131typedef int cred_t;
132typedef int file_t;
133typedef int vnode_t;
134typedef int vfs_t;
135typedef int fpos_t;
136typedef int exhda_t;
137typedef int ucontext_t;
138typedef int sess_t;
139typedef int hrtcmd_t;
140typedef int interval_t;
141typedef int key_t;
142typedef int daddr_t;
143typedef int stack_t;
144typedef int sigaction_t;
145typedef int siginfo_t;
146typedef int mblk_t;
147typedef int paddr_t;
148typedef int qband_t;
149typedef int queue_t;
150typedef int rf_resource_t;
151typedef int sr_mount_t;
152typedef int timer_t;
153typedef int fpregset_t;
154typedef int prstatus_t;
155typedef int vfssw_t;
156typedef int eucwidth_t;
157typedef int page_t;
158
159typedef int u_int;
160typedef int u_short;
161typedef int u_long;
162typedef int u_char;
163
164typedef int ushort;
165typedef int ulong;
166typedef int uint;
167
168typedef int __gnuc_va_list;
169
170typedef int archdr;
171typedef int AUTH;
172typedef int CLIENT;
173typedef int DIR;
174typedef int ENTRY;
175typedef int Elf;
176typedef int Elf32_Ehdr;
177typedef int Elf32_Phdr;
178typedef int Elf32_Shdr;
179typedef int Elf_Arhdr;
180typedef int Elf_Arsym;
181typedef int Elf_Cmd;
182typedef int Elf_Data;
183typedef int Elf_Scn;
184typedef int Elf_Type;
185typedef int Elf_Kind;
186typedef int FIELD;
187typedef int FIELDTYPE;
188typedef int PTF_int;
189typedef int PTF_void;
190typedef int PTF_charP;
191typedef int FILE;
192typedef int FORM;
193typedef int ITEM;
194typedef int MENU;
195typedef int OPTIONS;
196typedef int PANEL;
197typedef int FTP_void;
198typedef int RPCBLIST;
199typedef int SCREEN;
200typedef int SVCXPRT;
201typedef int TERMINAL;
202typedef int WINDOW;
203typedef int bool;
204typedef int nl_catd;
205typedef int nl_item;
206typedef int chtype;
207typedef int datum;
208typedef int fp_rnd;
209typedef int spraycumul;
210typedef int WORD;
211typedef int VISIT;
212typedef int ACTION;
213
214typedef int *jmp_buf;
215typedef int *sigjmp_buf;
216typedef int xdrproc_t;
217typedef int CALL;
218typedef int bool_t;
219typedef int DBM;
220typedef int des_block;
221typedef int resultproc_t;
222
223
224#ifdef BSD
225
226#define mode_t int
227#define uid_t int
228#define gid_t int
229#define time_t long
230#define pid_t int
231#define signal_ret_t int
232#define wait_arg_t union wait
233
234#else
235
236#define signal_ret_t void
237#define wait_arg_t int
238
239#endif
Note: See TracBrowser for help on using the repository browser.