diff options
author | 1997-07-25 20:29:57 +0000 | |
---|---|---|
committer | 1997-07-25 20:29:57 +0000 | |
commit | b71133560cf1ffb85aedfde08af920b5a3146273 (patch) | |
tree | 9bc09abca4a79e54e78902deb91633a9273e6fe9 /lib/libedit/sys.h | |
parent | #if __STDC__ --> #ifdef __STDC__ (diff) | |
download | wireguard-openbsd-b71133560cf1ffb85aedfde08af920b5a3146273.tar.xz wireguard-openbsd-b71133560cf1ffb85aedfde08af920b5a3146273.zip |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'lib/libedit/sys.h')
-rw-r--r-- | lib/libedit/sys.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libedit/sys.h b/lib/libedit/sys.h index bdb62121c62..cfe5a2019a9 100644 --- a/lib/libedit/sys.h +++ b/lib/libedit/sys.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sys.h,v 1.3 1997/03/14 05:13:04 millert Exp $ */ +/* $OpenBSD: sys.h,v 1.4 1997/07/25 20:30:16 mickey Exp $ */ /* $NetBSD: sys.h,v 1.3 1997/01/11 06:48:12 lukem Exp $ */ /*- @@ -62,7 +62,7 @@ #ifndef _PTR_T # define _PTR_T -# if __STDC__ +# ifdef __STDC__ typedef void* ptr_t; # else typedef char* ptr_t; @@ -71,7 +71,7 @@ typedef char* ptr_t; #ifndef _IOCTL_T # define _IOCTL_T -# if __STDC__ +# ifdef __STDC__ typedef void* ioctl_t; # else typedef char* ioctl_t; |