diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1998-02-08 22:45:16 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1998-02-08 22:45:16 +0000 |
commit | f9d3835e37ef52edc81ab34243babdcdc2369783 (patch) | |
tree | b623759dce13c9f84a8afe3391c0d34b0efc19a2 /lib/libc/sys/Lint_sigprocmask.c | |
parent | 30bff7e6175caea2b7ec7f5d43283b9c30df57ea (diff) |
Better lint(1) framework. Mostly from cgd@NetBSD
Diffstat (limited to 'lib/libc/sys/Lint_sigprocmask.c')
-rw-r--r-- | lib/libc/sys/Lint_sigprocmask.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/libc/sys/Lint_sigprocmask.c b/lib/libc/sys/Lint_sigprocmask.c new file mode 100644 index 00000000000..3a420cb3cbe --- /dev/null +++ b/lib/libc/sys/Lint_sigprocmask.c @@ -0,0 +1,19 @@ +/* $OpenBSD: Lint_sigprocmask.c,v 1.1 1998/02/08 22:45:13 tholo Exp $ */ +/* $NetBSD: Lint_sigprocmask.c,v 1.1 1997/11/06 00:53:15 cgd Exp $ */ + +/* + * This file placed in the public domain. + * Chris Demetriou, November 5, 1997. + */ + +#include <signal.h> + +/*ARGSUSED*/ +int +sigprocmask(how, set, oset) + int how; + const sigset_t *set; + sigset_t *oset; +{ + return (0); +} |