diff options
| author | christos <christos@NetBSD.org> | 2012-06-24 15:26:02 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2012-06-24 15:26:02 +0000 |
| commit | aaa825bac1ed4e2de63991536e140ca68ab6e079 (patch) | |
| tree | 50917c99e31764f6aad275f898c1e43b7643e5c6 /lib/libc/sys | |
| parent | 981e50fddf87e746c9ada4cc5ccb42506e081b0e (diff) | |
fix old style definitions; XXX: gcc should have picked them up but it did not.
Diffstat (limited to 'lib/libc/sys')
| -rw-r--r-- | lib/libc/sys/Lint___vfork14.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/Lint___vfork14.c b/lib/libc/sys/Lint___vfork14.c index badeb4060f7..c3eb792c627 100644 --- a/lib/libc/sys/Lint___vfork14.c +++ b/lib/libc/sys/Lint___vfork14.c @@ -1,4 +1,4 @@ -/* $NetBSD: Lint___vfork14.c,v 1.2 2000/06/14 06:49:10 cgd Exp $ */ +/* $NetBSD: Lint___vfork14.c,v 1.3 2012/06/24 15:26:03 christos Exp $ */ /* * This file placed in the public domain. @@ -9,7 +9,7 @@ /*ARGSUSED*/ pid_t -__vfork14() +__vfork14(void) { return (0); } |
