From 4a7fabf18c7233a33920a634e68101b8838454a3 Mon Sep 17 00:00:00 2001 From: thorpej Date: Mon, 5 Jan 1998 06:14:51 +0000 Subject: [PATCH] Update for __vfork14(). --- include/unistd.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/unistd.h b/include/unistd.h index 3d43be912eb6..de1aa6fece25 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1,4 +1,4 @@ -/* $NetBSD: unistd.h,v 1.46 1997/12/20 20:23:15 kleink Exp $ */ +/* $NetBSD: unistd.h,v 1.47 1998/01/05 06:14:51 thorpej Exp $ */ /*- * Copyright (c) 1991 The Regents of the University of California. @@ -177,7 +177,12 @@ useconds_t ualarm __P((useconds_t, useconds_t)); int undelete __P((const char *)); int usleep __P((useconds_t)); void *valloc __P((size_t)); /* obsoleted by malloc() */ +#ifdef __LIBC12_SOURCE__ pid_t vfork __P((void)); +pid_t __vfork14 __P((void)); +#else +pid_t vfork __P((void)) __RENAME(__vfork14); +#endif int getopt __P((int, char * const *, const char *)); extern char *optarg; /* getopt(3) external variables */