Home | History | Annotate | Line # | Download | only in sys
Lint___syscall.c revision 1.4
      1  1.4   rillig /* $NetBSD: Lint___syscall.c,v 1.4 2024/12/01 16:16:57 rillig 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.2      wiz #include <stdarg.h>
      9  1.1  mycroft #include <unistd.h>
     10  1.1  mycroft 
     11  1.1  mycroft /*ARGSUSED*/
     12  1.1  mycroft quad_t
     13  1.1  mycroft __syscall(quad_t arg1, ...)
     14  1.1  mycroft {
     15  1.4   rillig 	return 0;
     16  1.1  mycroft }
     17