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