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