blob: 367a7aac1794043002532c9cc827019e802b9b3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* $OpenBSD: Lint_syscall.c,v 1.2 2002/02/19 19:39:37 millert Exp $ */
/* $NetBSD: Lint_syscall.c,v 1.1 1997/11/06 00:53:22 cgd Exp $ */
/*
* This file placed in the public domain.
* Chris Demetriou, November 5, 1997.
*/
#include <unistd.h>
#include <stdarg.h>
/*ARGSUSED*/
int
syscall(int arg1, ...)
{
return (0);
}
|