diff options
author | mickey <> | 1997-07-25 20:30:14 +0000 |
---|---|---|
committer | mickey <> | 1997-07-25 20:30:14 +0000 |
commit | ad27efe0c0c077dd449e10cf6c0e155b98e8d613 (patch) | |
tree | fe11b15be1bee1f50d17dcf02e134bf2a87b28be /src/lib/libc/string/strftime.c | |
parent | 456073f2660b60df384e34cccfa1e588c7d47a4f (diff) | |
download | openbsd-ad27efe0c0c077dd449e10cf6c0e155b98e8d613.tar.gz openbsd-ad27efe0c0c077dd449e10cf6c0e155b98e8d613.tar.bz2 openbsd-ad27efe0c0c077dd449e10cf6c0e155b98e8d613.zip |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'src/lib/libc/string/strftime.c')
-rw-r--r-- | src/lib/libc/string/strftime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/string/strftime.c b/src/lib/libc/string/strftime.c index 21be6667b4..a72efb8cde 100644 --- a/src/lib/libc/string/strftime.c +++ b/src/lib/libc/string/strftime.c | |||
@@ -32,7 +32,7 @@ | |||
32 | */ | 32 | */ |
33 | 33 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 34 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | static char *rcsid = "$OpenBSD: strftime.c,v 1.7 1996/10/28 16:53:28 tholo Exp $"; | 35 | static char *rcsid = "$OpenBSD: strftime.c,v 1.8 1997/07/25 20:30:14 mickey Exp $"; |
36 | #endif /* LIBC_SCCS and not lint */ | 36 | #endif /* LIBC_SCCS and not lint */ |
37 | 37 | ||
38 | #include <sys/localedef.h> | 38 | #include <sys/localedef.h> |
@@ -296,7 +296,7 @@ _secs(t) | |||
296 | } | 296 | } |
297 | 297 | ||
298 | static int | 298 | static int |
299 | #if __STDC__ | 299 | #ifdef __STDC__ |
300 | _conv(int n, int digits, char pad) | 300 | _conv(int n, int digits, char pad) |
301 | #else | 301 | #else |
302 | _conv(n, digits, pad) | 302 | _conv(n, digits, pad) |