summaryrefslogtreecommitdiffstats
path: root/lib/libc/string/strftime.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/string/strftime.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/string/strftime.c')
-rw-r--r--lib/libc/string/strftime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/string/strftime.c b/lib/libc/string/strftime.c
index 21be6667b40..a72efb8cded 100644
--- a/lib/libc/string/strftime.c
+++ b/lib/libc/string/strftime.c
@@ -32,7 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: strftime.c,v 1.7 1996/10/28 16:53:28 tholo Exp $";
+static char *rcsid = "$OpenBSD: strftime.c,v 1.8 1997/07/25 20:30:14 mickey Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/localedef.h>
@@ -296,7 +296,7 @@ _secs(t)
}
static int
-#if __STDC__
+#ifdef __STDC__
_conv(int n, int digits, char pad)
#else
_conv(n, digits, pad)