diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-08-22 14:39:22 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-08-22 14:39:22 +0000 |
commit | c1a84c1c712d13ee22082743780139fe2a4855f5 (patch) | |
tree | 67ddee55a66601d3debbf688ca293ee4ed67f25f | |
parent | da9fd8b2b59232ba35a6e7508d1e26ce0ebcd91c (diff) |
set _POSIX_JOB_CONTROL and _POSIX_SAVED_IDS to the correct values; ok millert
-rw-r--r-- | sys/sys/unistd.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/sys/unistd.h b/sys/sys/unistd.h index 241b2183e72..973ba263ea7 100644 --- a/sys/sys/unistd.h +++ b/sys/sys/unistd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: unistd.h,v 1.15 2008/06/25 14:54:44 millert Exp $ */ +/* $OpenBSD: unistd.h,v 1.16 2008/08/22 14:39:21 deraadt Exp $ */ /* $NetBSD: unistd.h,v 1.10 1994/06/29 06:46:06 cgd Exp $ */ /* @@ -38,9 +38,10 @@ #include <sys/cdefs.h> /* compile-time symbolic constants */ -#define _POSIX_JOB_CONTROL /* implementation supports job control */ - -#define _POSIX_SAVED_IDS /* saved set-user-ID and set-group-ID */ + /* implementation supports job control */ +#define _POSIX_JOB_CONTROL 1 + /* saved set-user-ID and set-group-ID */ +#define _POSIX_SAVED_IDS 1 #define _POSIX_VERSION 199009L #define _POSIX2_VERSION 199212L |