From f9d3835e37ef52edc81ab34243babdcdc2369783 Mon Sep 17 00:00:00 2001 From: Thorsten Lockert Date: Sun, 8 Feb 1998 22:45:16 +0000 Subject: Better lint(1) framework. Mostly from cgd@NetBSD --- lib/libc/sys/Lint_syscall.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 lib/libc/sys/Lint_syscall.c (limited to 'lib/libc/sys/Lint_syscall.c') diff --git a/lib/libc/sys/Lint_syscall.c b/lib/libc/sys/Lint_syscall.c new file mode 100644 index 00000000000..d1afedad86c --- /dev/null +++ b/lib/libc/sys/Lint_syscall.c @@ -0,0 +1,27 @@ +/* $OpenBSD: Lint_syscall.c,v 1.1 1998/02/08 22:45:14 tholo 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 +#ifdef __STDC__ +#include +#else +#include +#endif + +/*ARGSUSED*/ +int +#ifdef __STDC__ +syscall(int arg1, ...) +#else +syscall(arg1, va_alist) + int arg1; + va_dcl +#endif +{ + return (0); +} -- cgit v1.2.3