/* $NetBSD: Lint_syscall.c,v 1.1 1997/11/06 00:53:22 cgd Exp $ */ /* * This file placed in the public domain. * Chris Demetriou, November 5, 1997. */ #include #ifdef __STDC__ #include #else #include #endif /*ARGSUSED*/ int #ifdef __STDC__ syscall(int arg1, ...) #else syscall(arg1, va_alist) int arg1; va_dcl #endif { return (0); }