diff options
Diffstat (limited to 'lib/libc/sys/Lint_sigsuspend.c')
-rw-r--r-- | lib/libc/sys/Lint_sigsuspend.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/libc/sys/Lint_sigsuspend.c b/lib/libc/sys/Lint_sigsuspend.c new file mode 100644 index 00000000000..8f6f819f4f1 --- /dev/null +++ b/lib/libc/sys/Lint_sigsuspend.c @@ -0,0 +1,17 @@ +/* $OpenBSD: Lint_sigsuspend.c,v 1.1 1998/02/08 22:45:14 tholo Exp $ */ +/* $NetBSD: Lint_sigsuspend.c,v 1.1 1997/11/06 00:53:20 cgd Exp $ */ + +/* + * This file placed in the public domain. + * Chris Demetriou, November 5, 1997. + */ + +#include <signal.h> + +/*ARGSUSED*/ +int +sigsuspend(sigmask) + const sigset_t *sigmask; +{ + return (0); +} |