diff options
author | Richard Basch <probe@mit.edu> | 1993-09-24 12:31:31 +0000 |
---|---|---|
committer | Richard Basch <probe@mit.edu> | 1993-09-24 12:31:31 +0000 |
commit | b23aacfdb619e93871ff324d43e02050686c1a48 (patch) | |
tree | 5d5c8e832e0572d1e14b31f8fbd397f5bb0c8877 /clients | |
parent | 9f773da4b4e2e3d487c5a777bedf2ab45d32e1b7 (diff) |
Conditionalize on POSIX instead of _POSIX_SOURCE
Diffstat (limited to 'clients')
-rw-r--r-- | clients/znol/znol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clients/znol/znol.c b/clients/znol/znol.c index 8f2fb4b..8d5ebb2 100644 --- a/clients/znol/znol.c +++ b/clients/znol/znol.c @@ -24,7 +24,7 @@ static char rcsid_znol_c[] = "$Id$"; #define ON 1 #define OFF 0 -#ifdef _POSIX_SOURCE +#ifdef POSIX #include <stdlib.h> #else extern char *getenv(), *malloc(); |