summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/setmode.c
diff options
context:
space:
mode:
authormickey <mickey@openbsd.org>1997-07-25 20:29:57 +0000
committermickey <mickey@openbsd.org>1997-07-25 20:29:57 +0000
commitb71133560cf1ffb85aedfde08af920b5a3146273 (patch)
tree9bc09abca4a79e54e78902deb91633a9273e6fe9 /lib/libc/gen/setmode.c
parent#if __STDC__ --> #ifdef __STDC__ (diff)
downloadwireguard-openbsd-b71133560cf1ffb85aedfde08af920b5a3146273.tar.xz
wireguard-openbsd-b71133560cf1ffb85aedfde08af920b5a3146273.zip
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'lib/libc/gen/setmode.c')
-rw-r--r--lib/libc/gen/setmode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/setmode.c b/lib/libc/gen/setmode.c
index f5f41277202..c13720e8cd3 100644
--- a/lib/libc/gen/setmode.c
+++ b/lib/libc/gen/setmode.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: setmode.c,v 1.6 1997/07/23 21:04:07 kstailey Exp $ */
+/* $OpenBSD: setmode.c,v 1.7 1997/07/25 20:30:04 mickey Exp $ */
/* $NetBSD: setmode.c,v 1.15 1997/02/07 22:21:06 christos Exp $ */
/*
@@ -41,7 +41,7 @@
#if 0
static char sccsid[] = "@(#)setmode.c 8.2 (Berkeley) 3/25/94";
#else
-static char rcsid[] = "$OpenBSD: setmode.c,v 1.6 1997/07/23 21:04:07 kstailey Exp $";
+static char rcsid[] = "$OpenBSD: setmode.c,v 1.7 1997/07/25 20:30:04 mickey Exp $";
#endif
#endif /* LIBC_SCCS and not lint */
@@ -86,7 +86,7 @@ static void dumpmode __P((BITCMD *));
* bits) followed by a '+' (set bits).
*/
mode_t
-#if __STDC__
+#ifdef __STDC__
getmode(const void *bbox, mode_t omode)
#else
getmode(bbox, omode)