svr4_proto.h revision 43412
126497Sache/*
226497Sache * System call prototypes.
326497Sache *
426497Sache * DO NOT EDIT-- this file is automatically generated.
526497Sache * created from;	@(#)syscalls.master	8.1 (Berkeley) 7/19/93
626497Sache */
775406Sache
875406Sache#ifndef _SVR4_SYSPROTO_H_
926497Sache#define	_SVR4_SYSPROTO_H_
1026497Sache
1126497Sache#include <sys/signal.h>
1226497Sache
1326497Sachestruct proc;
1426497Sache
1526497Sache#define	PAD_(t)	(sizeof(register_t) <= sizeof(t) ? \
1626497Sache		0 : sizeof(register_t) - sizeof(t))
1726497Sache
1826497Sachestruct	svr4_sys_open_args {
1926497Sache	char *	path;	char path_[PAD_(char *)];
2035486Sache	int	flags;	char flags_[PAD_(int)];
2135486Sache	int	mode;	char mode_[PAD_(int)];
2235486Sache};
2335486Sachestruct	svr4_sys_wait_args {
2435486Sache	int *	status;	char status_[PAD_(int *)];
2535486Sache};
2635486Sachestruct	svr4_sys_creat_args {
2735486Sache	char *	path;	char path_[PAD_(char *)];
2835486Sache	int	mode;	char mode_[PAD_(int)];
2935486Sache};
3035486Sachestruct	svr4_sys_execv_args {
3126497Sache	char *	path;	char path_[PAD_(char *)];
3226497Sache	char **	argp;	char argp_[PAD_(char **)];
3326497Sache};
3475406Sachestruct	svr4_sys_time_args {
3526497Sache	time_t *	t;	char t_[PAD_(time_t *)];
3658310Sache};
3735486Sachestruct	svr4_sys_mknod_args {
3826497Sache	char *	path;	char path_[PAD_(char *)];
3926497Sache	int	mode;	char mode_[PAD_(int)];
4026497Sache	int	dev;	char dev_[PAD_(int)];
4126497Sache};
4226497Sachestruct	svr4_sys_break_args {
4326497Sache	caddr_t	nsize;	char nsize_[PAD_(caddr_t)];
4447558Sache};
4547558Sachestruct	svr4_sys_stat_args {
4647558Sache	char *	path;	char path_[PAD_(char *)];
4747558Sache	struct svr4_stat *	ub;	char ub_[PAD_(struct svr4_stat *)];
4826497Sache};
4926497Sachestruct	svr4_sys_alarm_args {
5047558Sache	unsigned	sec;	char sec_[PAD_(unsigned)];
5147558Sache};
5247558Sachestruct	svr4_sys_fstat_args {
5326497Sache	int	fd;	char fd_[PAD_(int)];
5426497Sache	struct svr4_stat *	sb;	char sb_[PAD_(struct svr4_stat *)];
5526497Sache};
5626497Sachestruct	svr4_sys_pause_args {
5726497Sache	register_t dummy;
5858310Sache};
5958310Sachestruct	svr4_sys_utime_args {
6026497Sache	char *	path;	char path_[PAD_(char *)];
6126497Sache	struct svr4_utimbuf *	ubuf;	char ubuf_[PAD_(struct svr4_utimbuf *)];
6226497Sache};
6326497Sachestruct	svr4_sys_access_args {
6426497Sache	char *	path;	char path_[PAD_(char *)];
6526497Sache	int	flags;	char flags_[PAD_(int)];
6626497Sache};
6726497Sachestruct	svr4_sys_nice_args {
6826497Sache	int	prio;	char prio_[PAD_(int)];
6926497Sache};
7026497Sachestruct	svr4_sys_kill_args {
7126497Sache	int	pid;	char pid_[PAD_(int)];
7226497Sache	int	signum;	char signum_[PAD_(int)];
7326497Sache};
7426497Sachestruct	svr4_sys_pgrpsys_args {
7526497Sache	int	cmd;	char cmd_[PAD_(int)];
7626497Sache	int	pid;	char pid_[PAD_(int)];
7726497Sache	int	pgid;	char pgid_[PAD_(int)];
7826497Sache};
7926497Sachestruct	svr4_sys_times_args {
8035486Sache	struct tms *	tp;	char tp_[PAD_(struct tms *)];
8126497Sache};
8226497Sachestruct	svr4_sys_signal_args {
8326497Sache	int	signum;	char signum_[PAD_(int)];
8435486Sache	svr4_sig_t	handler;	char handler_[PAD_(svr4_sig_t)];
8535486Sache};
8635486Sache#if defined(NOTYET)
8735486Sachestruct	svr4_sys_msgsys_args {
8835486Sache	int	what;	char what_[PAD_(int)];
8935486Sache	int	a2;	char a2_[PAD_(int)];
9035486Sache	int	a3;	char a3_[PAD_(int)];
9135486Sache	int	a4;	char a4_[PAD_(int)];
9235486Sache	int	a5;	char a5_[PAD_(int)];
9326497Sache};
9426497Sache#else
9575406Sache#endif
9626497Sachestruct	svr4_sys_sysarch_args {
9726497Sache	int	op;	char op_[PAD_(int)];
9826497Sache	void *	a1;	char a1_[PAD_(void *)];
9926497Sache};
10026497Sachestruct	svr4_sys_ioctl_args {
10126497Sache	int	fd;	char fd_[PAD_(int)];
10247558Sache	u_long	com;	char com_[PAD_(u_long)];
10347558Sache	caddr_t	data;	char data_[PAD_(caddr_t)];
10447558Sache};
10547558Sachestruct	svr4_sys_utssys_args {
10647558Sache	void *	a1;	char a1_[PAD_(void *)];
10747558Sache	void *	a2;	char a2_[PAD_(void *)];
10847558Sache	int	sel;	char sel_[PAD_(int)];
10958310Sache	void *	a3;	char a3_[PAD_(void *)];
11047558Sache};
11147558Sachestruct	svr4_sys_execve_args {
11247558Sache	char *	path;	char path_[PAD_(char *)];
11347558Sache	char **	argp;	char argp_[PAD_(char **)];
11447558Sache	char **	envp;	char envp_[PAD_(char **)];
11547558Sache};
11647558Sachestruct	svr4_sys_fcntl_args {
11747558Sache	int	fd;	char fd_[PAD_(int)];
11847558Sache	int	cmd;	char cmd_[PAD_(int)];
11947558Sache	char *	arg;	char arg_[PAD_(char *)];
12047558Sache};
12147558Sachestruct	svr4_sys_ulimit_args {
12247558Sache	int	cmd;	char cmd_[PAD_(int)];
12358310Sache	long	newlimit;	char newlimit_[PAD_(long)];
12458310Sache};
12558310Sachestruct	svr4_sys_getdents_args {
12658310Sache	int	fd;	char fd_[PAD_(int)];
12758310Sache	char *	buf;	char buf_[PAD_(char *)];
12858310Sache	int	nbytes;	char nbytes_[PAD_(int)];
12958310Sache};
13047558Sachestruct	svr4_sys_getmsg_args {
13147558Sache	int	fd;	char fd_[PAD_(int)];
13258310Sache	struct svr4_strbuf *	ctl;	char ctl_[PAD_(struct svr4_strbuf *)];
13358310Sache	struct svr4_strbuf *	dat;	char dat_[PAD_(struct svr4_strbuf *)];
13458310Sache	int *	flags;	char flags_[PAD_(int *)];
13558310Sache};
13658310Sachestruct	svr4_sys_putmsg_args {
13735486Sache	int	fd;	char fd_[PAD_(int)];
13835486Sache	struct svr4_strbuf *	ctl;	char ctl_[PAD_(struct svr4_strbuf *)];
13926497Sache	struct svr4_strbuf *	dat;	char dat_[PAD_(struct svr4_strbuf *)];
14026497Sache	int	flags;	char flags_[PAD_(int)];
14135486Sache};
14226497Sachestruct	svr4_sys_poll_args {
14326497Sache	struct pollfd *	fds;	char fds_[PAD_(struct pollfd *)];
14447558Sache	unsigned int	nfds;	char nfds_[PAD_(unsigned int)];
14547558Sache	int	timeout;	char timeout_[PAD_(int)];
14647558Sache};
14726497Sachestruct	svr4_sys_lstat_args {
14826497Sache	char *	path;	char path_[PAD_(char *)];
14926497Sache	struct svr4_stat *	ub;	char ub_[PAD_(struct svr4_stat *)];
15026497Sache};
15126497Sachestruct	svr4_sys_sigprocmask_args {
15235486Sache	int	how;	char how_[PAD_(int)];
15335486Sache	svr4_sigset_t *	set;	char set_[PAD_(svr4_sigset_t *)];
15447558Sache	svr4_sigset_t *	oset;	char oset_[PAD_(svr4_sigset_t *)];
15526497Sache};
15626497Sachestruct	svr4_sys_sigsuspend_args {
15726497Sache	svr4_sigset_t *	ss;	char ss_[PAD_(svr4_sigset_t *)];
15826497Sache};
159struct	svr4_sys_sigaltstack_args {
160	struct svr4_sigaltstack *	nss;	char nss_[PAD_(struct svr4_sigaltstack *)];
161	struct svr4_sigaltstack *	oss;	char oss_[PAD_(struct svr4_sigaltstack *)];
162};
163struct	svr4_sys_sigaction_args {
164	int	signum;	char signum_[PAD_(int)];
165	struct svr4_sigaction *	nsa;	char nsa_[PAD_(struct svr4_sigaction *)];
166	struct svr4_sigaction *	osa;	char osa_[PAD_(struct svr4_sigaction *)];
167};
168struct	svr4_sys_sigpending_args {
169	int	what;	char what_[PAD_(int)];
170	svr4_sigset_t *	mask;	char mask_[PAD_(svr4_sigset_t *)];
171};
172struct	svr4_sys_context_args {
173	int	func;	char func_[PAD_(int)];
174	struct svr4_ucontext *	uc;	char uc_[PAD_(struct svr4_ucontext *)];
175};
176struct	svr4_sys_statvfs_args {
177	char *	path;	char path_[PAD_(char *)];
178	struct svr4_statvfs *	fs;	char fs_[PAD_(struct svr4_statvfs *)];
179};
180struct	svr4_sys_fstatvfs_args {
181	int	fd;	char fd_[PAD_(int)];
182	struct svr4_statvfs *	fs;	char fs_[PAD_(struct svr4_statvfs *)];
183};
184struct	svr4_sys_waitsys_args {
185	int	grp;	char grp_[PAD_(int)];
186	int	id;	char id_[PAD_(int)];
187	union svr4_siginfo *	info;	char info_[PAD_(union svr4_siginfo *)];
188	int	options;	char options_[PAD_(int)];
189};
190struct	svr4_sys_hrtsys_args {
191	int	cmd;	char cmd_[PAD_(int)];
192	int	fun;	char fun_[PAD_(int)];
193	int	sub;	char sub_[PAD_(int)];
194	void *	rv1;	char rv1_[PAD_(void *)];
195	void *	rv2;	char rv2_[PAD_(void *)];
196};
197struct	svr4_sys_pathconf_args {
198	char *	path;	char path_[PAD_(char *)];
199	int	name;	char name_[PAD_(int)];
200};
201struct	svr4_sys_mmap_args {
202	caddr_t	addr;	char addr_[PAD_(caddr_t)];
203	svr4_size_t	len;	char len_[PAD_(svr4_size_t)];
204	int	prot;	char prot_[PAD_(int)];
205	int	flags;	char flags_[PAD_(int)];
206	int	fd;	char fd_[PAD_(int)];
207	svr4_off_t	pos;	char pos_[PAD_(svr4_off_t)];
208};
209struct	svr4_sys_fpathconf_args {
210	int	fd;	char fd_[PAD_(int)];
211	int	name;	char name_[PAD_(int)];
212};
213struct	svr4_sys_xstat_args {
214	int	two;	char two_[PAD_(int)];
215	char *	path;	char path_[PAD_(char *)];
216	struct svr4_xstat *	ub;	char ub_[PAD_(struct svr4_xstat *)];
217};
218struct	svr4_sys_lxstat_args {
219	int	two;	char two_[PAD_(int)];
220	char *	path;	char path_[PAD_(char *)];
221	struct svr4_xstat *	ub;	char ub_[PAD_(struct svr4_xstat *)];
222};
223struct	svr4_sys_fxstat_args {
224	int	two;	char two_[PAD_(int)];
225	int	fd;	char fd_[PAD_(int)];
226	struct svr4_xstat *	sb;	char sb_[PAD_(struct svr4_xstat *)];
227};
228struct	svr4_sys_xmknod_args {
229	int	two;	char two_[PAD_(int)];
230	char *	path;	char path_[PAD_(char *)];
231	svr4_mode_t	mode;	char mode_[PAD_(svr4_mode_t)];
232	svr4_dev_t	dev;	char dev_[PAD_(svr4_dev_t)];
233};
234struct	svr4_sys_setrlimit_args {
235	int	which;	char which_[PAD_(int)];
236	const struct svr4_rlimit *	rlp;	char rlp_[PAD_(const struct svr4_rlimit *)];
237};
238struct	svr4_sys_getrlimit_args {
239	int	which;	char which_[PAD_(int)];
240	struct svr4_rlimit *	rlp;	char rlp_[PAD_(struct svr4_rlimit *)];
241};
242struct	svr4_sys_memcntl_args {
243	void *	addr;	char addr_[PAD_(void *)];
244	svr4_size_t	len;	char len_[PAD_(svr4_size_t)];
245	int	cmd;	char cmd_[PAD_(int)];
246	void *	arg;	char arg_[PAD_(void *)];
247	int	attr;	char attr_[PAD_(int)];
248	int	mask;	char mask_[PAD_(int)];
249};
250struct	svr4_sys_uname_args {
251	struct svr4_utsname *	name;	char name_[PAD_(struct svr4_utsname *)];
252	int	dummy;	char dummy_[PAD_(int)];
253};
254struct	svr4_sys_sysconfig_args {
255	int	name;	char name_[PAD_(int)];
256};
257struct	svr4_sys_systeminfo_args {
258	int	what;	char what_[PAD_(int)];
259	char *	buf;	char buf_[PAD_(char *)];
260	long	len;	char len_[PAD_(long)];
261};
262struct	svr4_sys_fchroot_args {
263	int	fd;	char fd_[PAD_(int)];
264};
265struct	svr4_sys_utimes_args {
266	char *	path;	char path_[PAD_(char *)];
267	struct timeval *	tptr;	char tptr_[PAD_(struct timeval *)];
268};
269struct	svr4_sys_vhangup_args {
270	register_t dummy;
271};
272struct	svr4_sys_gettimeofday_args {
273	struct timeval *	tp;	char tp_[PAD_(struct timeval *)];
274};
275struct	svr4_sys_llseek_args {
276	int	fd;	char fd_[PAD_(int)];
277	long	offset1;	char offset1_[PAD_(long)];
278	long	offset2;	char offset2_[PAD_(long)];
279	int	whence;	char whence_[PAD_(int)];
280};
281struct	svr4_sys_acl_args {
282	char *	path;	char path_[PAD_(char *)];
283	int	cmd;	char cmd_[PAD_(int)];
284	int	num;	char num_[PAD_(int)];
285	struct svr4_aclent *	buf;	char buf_[PAD_(struct svr4_aclent *)];
286};
287struct	svr4_sys_auditsys_args {
288	int	code;	char code_[PAD_(int)];
289	int	a1;	char a1_[PAD_(int)];
290	int	a2;	char a2_[PAD_(int)];
291	int	a3;	char a3_[PAD_(int)];
292	int	a4;	char a4_[PAD_(int)];
293	int	a5;	char a5_[PAD_(int)];
294};
295struct	svr4_sys_facl_args {
296	int	fd;	char fd_[PAD_(int)];
297	int	cmd;	char cmd_[PAD_(int)];
298	int	num;	char num_[PAD_(int)];
299	struct svr4_aclent *	buf;	char buf_[PAD_(struct svr4_aclent *)];
300};
301struct	svr4_sys_resolvepath_args {
302	const char *	path;	char path_[PAD_(const char *)];
303	char *	buf;	char buf_[PAD_(char *)];
304	size_t	bufsiz;	char bufsiz_[PAD_(size_t)];
305};
306struct	svr4_sys_getdents64_args {
307	int	fd;	char fd_[PAD_(int)];
308	struct svr4_dirent64 *	dp;	char dp_[PAD_(struct svr4_dirent64 *)];
309	int	nbytes;	char nbytes_[PAD_(int)];
310};
311struct	svr4_sys_mmap64_args {
312	void *	addr;	char addr_[PAD_(void *)];
313	svr4_size_t	len;	char len_[PAD_(svr4_size_t)];
314	int	prot;	char prot_[PAD_(int)];
315	int	flags;	char flags_[PAD_(int)];
316	int	fd;	char fd_[PAD_(int)];
317	svr4_off64_t	pos;	char pos_[PAD_(svr4_off64_t)];
318};
319struct	svr4_sys_stat64_args {
320	char *	path;	char path_[PAD_(char *)];
321	struct svr4_stat64 *	sb;	char sb_[PAD_(struct svr4_stat64 *)];
322};
323struct	svr4_sys_lstat64_args {
324	char *	path;	char path_[PAD_(char *)];
325	struct svr4_stat64 *	sb;	char sb_[PAD_(struct svr4_stat64 *)];
326};
327struct	svr4_sys_fstat64_args {
328	int	fd;	char fd_[PAD_(int)];
329	struct svr4_stat64 *	sb;	char sb_[PAD_(struct svr4_stat64 *)];
330};
331struct	svr4_sys_statvfs64_args {
332	char *	path;	char path_[PAD_(char *)];
333	struct svr4_statvfs64 *	fs;	char fs_[PAD_(struct svr4_statvfs64 *)];
334};
335struct	svr4_sys_fstatvfs64_args {
336	int	fd;	char fd_[PAD_(int)];
337	struct svr4_statvfs64 *	fs;	char fs_[PAD_(struct svr4_statvfs64 *)];
338};
339struct	svr4_sys_setrlimit64_args {
340	int	which;	char which_[PAD_(int)];
341	const struct svr4_rlimit64 *	rlp;	char rlp_[PAD_(const struct svr4_rlimit64 *)];
342};
343struct	svr4_sys_getrlimit64_args {
344	int	which;	char which_[PAD_(int)];
345	struct svr4_rlimit64 *	rlp;	char rlp_[PAD_(struct svr4_rlimit64 *)];
346};
347struct	svr4_sys_creat64_args {
348	char *	path;	char path_[PAD_(char *)];
349	int	mode;	char mode_[PAD_(int)];
350};
351struct	svr4_sys_open64_args {
352	char *	path;	char path_[PAD_(char *)];
353	int	flags;	char flags_[PAD_(int)];
354	int	mode;	char mode_[PAD_(int)];
355};
356struct	svr4_sys_socket_args {
357	int	domain;	char domain_[PAD_(int)];
358	int	type;	char type_[PAD_(int)];
359	int	protocol;	char protocol_[PAD_(int)];
360};
361struct	svr4_sys_recv_args {
362	int	s;	char s_[PAD_(int)];
363	caddr_t	buf;	char buf_[PAD_(caddr_t)];
364	int	len;	char len_[PAD_(int)];
365	int	flags;	char flags_[PAD_(int)];
366};
367struct	svr4_sys_send_args {
368	int	s;	char s_[PAD_(int)];
369	caddr_t	buf;	char buf_[PAD_(caddr_t)];
370	int	len;	char len_[PAD_(int)];
371	int	flags;	char flags_[PAD_(int)];
372};
373struct	svr4_sys_sendto_args {
374	int	s;	char s_[PAD_(int)];
375	const void *	buf;	char buf_[PAD_(const void *)];
376	size_t	len;	char len_[PAD_(size_t)];
377	int	flags;	char flags_[PAD_(int)];
378	const struct sockaddr *	to;	char to_[PAD_(const struct sockaddr *)];
379	int	tolen;	char tolen_[PAD_(int)];
380};
381int	svr4_sys_open __P((struct proc *, struct svr4_sys_open_args *));
382int	svr4_sys_wait __P((struct proc *, struct svr4_sys_wait_args *));
383int	svr4_sys_creat __P((struct proc *, struct svr4_sys_creat_args *));
384int	svr4_sys_execv __P((struct proc *, struct svr4_sys_execv_args *));
385int	svr4_sys_time __P((struct proc *, struct svr4_sys_time_args *));
386int	svr4_sys_mknod __P((struct proc *, struct svr4_sys_mknod_args *));
387int	svr4_sys_break __P((struct proc *, struct svr4_sys_break_args *));
388int	svr4_sys_stat __P((struct proc *, struct svr4_sys_stat_args *));
389int	svr4_sys_alarm __P((struct proc *, struct svr4_sys_alarm_args *));
390int	svr4_sys_fstat __P((struct proc *, struct svr4_sys_fstat_args *));
391int	svr4_sys_pause __P((struct proc *, struct svr4_sys_pause_args *));
392int	svr4_sys_utime __P((struct proc *, struct svr4_sys_utime_args *));
393int	svr4_sys_access __P((struct proc *, struct svr4_sys_access_args *));
394int	svr4_sys_nice __P((struct proc *, struct svr4_sys_nice_args *));
395int	svr4_sys_kill __P((struct proc *, struct svr4_sys_kill_args *));
396int	svr4_sys_pgrpsys __P((struct proc *, struct svr4_sys_pgrpsys_args *));
397int	svr4_sys_times __P((struct proc *, struct svr4_sys_times_args *));
398int	svr4_sys_signal __P((struct proc *, struct svr4_sys_signal_args *));
399#if defined(NOTYET)
400int	svr4_sys_msgsys __P((struct proc *, struct svr4_sys_msgsys_args *));
401#else
402#endif
403int	svr4_sys_sysarch __P((struct proc *, struct svr4_sys_sysarch_args *));
404int	svr4_sys_ioctl __P((struct proc *, struct svr4_sys_ioctl_args *));
405int	svr4_sys_utssys __P((struct proc *, struct svr4_sys_utssys_args *));
406int	svr4_sys_execve __P((struct proc *, struct svr4_sys_execve_args *));
407int	svr4_sys_fcntl __P((struct proc *, struct svr4_sys_fcntl_args *));
408int	svr4_sys_ulimit __P((struct proc *, struct svr4_sys_ulimit_args *));
409int	svr4_sys_getdents __P((struct proc *, struct svr4_sys_getdents_args *));
410int	svr4_sys_getmsg __P((struct proc *, struct svr4_sys_getmsg_args *));
411int	svr4_sys_putmsg __P((struct proc *, struct svr4_sys_putmsg_args *));
412int	svr4_sys_poll __P((struct proc *, struct svr4_sys_poll_args *));
413int	svr4_sys_lstat __P((struct proc *, struct svr4_sys_lstat_args *));
414int	svr4_sys_sigprocmask __P((struct proc *, struct svr4_sys_sigprocmask_args *));
415int	svr4_sys_sigsuspend __P((struct proc *, struct svr4_sys_sigsuspend_args *));
416int	svr4_sys_sigaltstack __P((struct proc *, struct svr4_sys_sigaltstack_args *));
417int	svr4_sys_sigaction __P((struct proc *, struct svr4_sys_sigaction_args *));
418int	svr4_sys_sigpending __P((struct proc *, struct svr4_sys_sigpending_args *));
419int	svr4_sys_context __P((struct proc *, struct svr4_sys_context_args *));
420int	svr4_sys_statvfs __P((struct proc *, struct svr4_sys_statvfs_args *));
421int	svr4_sys_fstatvfs __P((struct proc *, struct svr4_sys_fstatvfs_args *));
422int	svr4_sys_waitsys __P((struct proc *, struct svr4_sys_waitsys_args *));
423int	svr4_sys_hrtsys __P((struct proc *, struct svr4_sys_hrtsys_args *));
424int	svr4_sys_pathconf __P((struct proc *, struct svr4_sys_pathconf_args *));
425int	svr4_sys_mmap __P((struct proc *, struct svr4_sys_mmap_args *));
426int	svr4_sys_fpathconf __P((struct proc *, struct svr4_sys_fpathconf_args *));
427int	svr4_sys_xstat __P((struct proc *, struct svr4_sys_xstat_args *));
428int	svr4_sys_lxstat __P((struct proc *, struct svr4_sys_lxstat_args *));
429int	svr4_sys_fxstat __P((struct proc *, struct svr4_sys_fxstat_args *));
430int	svr4_sys_xmknod __P((struct proc *, struct svr4_sys_xmknod_args *));
431int	svr4_sys_setrlimit __P((struct proc *, struct svr4_sys_setrlimit_args *));
432int	svr4_sys_getrlimit __P((struct proc *, struct svr4_sys_getrlimit_args *));
433int	svr4_sys_memcntl __P((struct proc *, struct svr4_sys_memcntl_args *));
434int	svr4_sys_uname __P((struct proc *, struct svr4_sys_uname_args *));
435int	svr4_sys_sysconfig __P((struct proc *, struct svr4_sys_sysconfig_args *));
436int	svr4_sys_systeminfo __P((struct proc *, struct svr4_sys_systeminfo_args *));
437int	svr4_sys_fchroot __P((struct proc *, struct svr4_sys_fchroot_args *));
438int	svr4_sys_utimes __P((struct proc *, struct svr4_sys_utimes_args *));
439int	svr4_sys_vhangup __P((struct proc *, struct svr4_sys_vhangup_args *));
440int	svr4_sys_gettimeofday __P((struct proc *, struct svr4_sys_gettimeofday_args *));
441int	svr4_sys_llseek __P((struct proc *, struct svr4_sys_llseek_args *));
442int	svr4_sys_acl __P((struct proc *, struct svr4_sys_acl_args *));
443int	svr4_sys_auditsys __P((struct proc *, struct svr4_sys_auditsys_args *));
444int	svr4_sys_facl __P((struct proc *, struct svr4_sys_facl_args *));
445int	svr4_sys_resolvepath __P((struct proc *, struct svr4_sys_resolvepath_args *));
446int	svr4_sys_getdents64 __P((struct proc *, struct svr4_sys_getdents64_args *));
447int	svr4_sys_mmap64 __P((struct proc *, struct svr4_sys_mmap64_args *));
448int	svr4_sys_stat64 __P((struct proc *, struct svr4_sys_stat64_args *));
449int	svr4_sys_lstat64 __P((struct proc *, struct svr4_sys_lstat64_args *));
450int	svr4_sys_fstat64 __P((struct proc *, struct svr4_sys_fstat64_args *));
451int	svr4_sys_statvfs64 __P((struct proc *, struct svr4_sys_statvfs64_args *));
452int	svr4_sys_fstatvfs64 __P((struct proc *, struct svr4_sys_fstatvfs64_args *));
453int	svr4_sys_setrlimit64 __P((struct proc *, struct svr4_sys_setrlimit64_args *));
454int	svr4_sys_getrlimit64 __P((struct proc *, struct svr4_sys_getrlimit64_args *));
455int	svr4_sys_creat64 __P((struct proc *, struct svr4_sys_creat64_args *));
456int	svr4_sys_open64 __P((struct proc *, struct svr4_sys_open64_args *));
457int	svr4_sys_socket __P((struct proc *, struct svr4_sys_socket_args *));
458int	svr4_sys_recv __P((struct proc *, struct svr4_sys_recv_args *));
459int	svr4_sys_send __P((struct proc *, struct svr4_sys_send_args *));
460int	svr4_sys_sendto __P((struct proc *, struct svr4_sys_sendto_args *));
461
462#ifdef COMPAT_43
463
464#if defined(NOTYET)
465#else
466#endif
467
468#endif /* COMPAT_43 */
469
470#undef PAD_
471
472#endif /* !_SVR4_SYSPROTO_H_ */
473