From 46ca4943257e3d673f9a7aec2cfdabb93a6594d8 Mon Sep 17 00:00:00 2001 From: guenther <> Date: Thu, 11 Apr 2013 03:09:16 +0000 Subject: [PATCH] getpgid() and getsid() were rolled into POSIX in 2008 ok millert@ --- src/include/unistd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/unistd.h b/src/include/unistd.h index 53026a7b..b9063071 100644 --- a/src/include/unistd.h +++ b/src/include/unistd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: unistd.h,v 1.75 2013/03/01 21:19:41 guenther Exp $ */ +/* $OpenBSD: unistd.h,v 1.76 2013/04/11 03:09:16 guenther Exp $ */ /* $NetBSD: unistd.h,v 1.26.4.1 1996/05/28 02:31:51 mrg Exp $ */ /*- @@ -430,7 +430,7 @@ int usleep(useconds_t); pid_t vfork(void); #endif -#if __XPG_VISIBLE >= 420 +#if __POSIX_VISIBLE >= 200809 || __XPG_VISIBLE >= 420 pid_t getpgid(pid_t); pid_t getsid(pid_t); #endif