Home | History | Annotate | Line # | Download | only in sys
Lint___syscall.c revision 1.1
      1  1.1  mycroft /* $NetBSD: Lint___syscall.c,v 1.1 2000/12/10 21:27:38 mycroft Exp $ */
      2  1.1  mycroft 
      3  1.1  mycroft /*
      4  1.1  mycroft  * This file placed in the public domain.
      5  1.1  mycroft  * Chris Demetriou, November 5, 1997.
      6  1.1  mycroft  */
      7  1.1  mycroft 
      8  1.1  mycroft #include <unistd.h>
      9  1.1  mycroft #ifdef __STDC__
     10  1.1  mycroft #include <stdarg.h>
     11  1.1  mycroft #else
     12  1.1  mycroft #include <varargs.h>
     13  1.1  mycroft #endif
     14  1.1  mycroft 
     15  1.1  mycroft /*ARGSUSED*/
     16  1.1  mycroft quad_t
     17  1.1  mycroft #ifdef __STDC__
     18  1.1  mycroft __syscall(quad_t arg1, ...)
     19  1.1  mycroft #else
     20  1.1  mycroft __syscall(arg1, va_alist)
     21  1.1  mycroft         quad_t arg1;
     22  1.1  mycroft         va_dcl
     23  1.1  mycroft #endif
     24  1.1  mycroft {
     25  1.1  mycroft 	return (0);
     26  1.1  mycroft }
     27