1 /*	$OpenBSD: Lint_syscall.c,v 1.2 2002/02/19 19:39:37 millert Exp $	*/
2 /*	$NetBSD: Lint_syscall.c,v 1.1 1997/11/06 00:53:22 cgd Exp $	*/
3 
4 /*
5  * This file placed in the public domain.
6  * Chris Demetriou, November 5, 1997.
7  */
8 
9 #include <unistd.h>
10 #include <stdarg.h>
11 
12 /*ARGSUSED*/
13 int
syscall(int arg1,...)14 syscall(int arg1, ...)
15 {
16 	return (0);
17 }
18