1 /* $NetBSD: Lint_syscall.c,v 1.1 1997/11/06 00:53:22 cgd Exp $ */ 2 3 /* 4 * This file placed in the public domain. 5 * Chris Demetriou, November 5, 1997. 6 */ 7 8 #include <unistd.h> 9 #ifdef __STDC__ 10 #include <stdarg.h> 11 #else 12 #include <varargs.h> 13 #endif 14 15 /*ARGSUSED*/ 16 int 17 #ifdef __STDC__ 18 syscall(int arg1, ...) 19 #else 20 syscall(arg1, va_alist) 21 int arg1; 22 va_dcl 23 #endif 24 { 25 return (0); 26 } 27