Home | History | Annotate | Line # | Download | only in sys
Lint___syscall.c revision 1.1
      1 /* $NetBSD: Lint___syscall.c,v 1.1 2000/12/10 21:27:38 mycroft 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 quad_t
     17 #ifdef __STDC__
     18 __syscall(quad_t arg1, ...)
     19 #else
     20 __syscall(arg1, va_alist)
     21         quad_t arg1;
     22         va_dcl
     23 #endif
     24 {
     25 	return (0);
     26 }
     27