summaryrefslogtreecommitdiff
path: root/lib/libc/sys
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2012-06-24 15:26:02 +0000
committerchristos <christos@NetBSD.org>2012-06-24 15:26:02 +0000
commitaaa825bac1ed4e2de63991536e140ca68ab6e079 (patch)
tree50917c99e31764f6aad275f898c1e43b7643e5c6 /lib/libc/sys
parent981e50fddf87e746c9ada4cc5ccb42506e081b0e (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.c4
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);
}