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/crypt/bcrypt.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/crypt/bcrypt.c')
-rw-r--r-- | src/lib/libc/crypt/bcrypt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/crypt/bcrypt.c b/src/lib/libc/crypt/bcrypt.c index 42418767ee..bea35e789a 100644 --- a/src/lib/libc/crypt/bcrypt.c +++ b/src/lib/libc/crypt/bcrypt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bcrypt.c,v 1.8 1997/07/23 20:58:26 kstailey Exp $ */ | 1 | /* $OpenBSD: bcrypt.c,v 1.9 1997/07/25 20:29:59 mickey Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> | 4 | * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> |
@@ -97,7 +97,7 @@ const static u_int8_t index_64[128] = | |||
97 | }; | 97 | }; |
98 | #define CHAR64(c) ( (c) > 127 ? 255 : index_64[(c)]) | 98 | #define CHAR64(c) ( (c) > 127 ? 255 : index_64[(c)]) |
99 | 99 | ||
100 | #if __STDC__ | 100 | #ifdef __STDC__ |
101 | static void | 101 | static void |
102 | decode_base64(u_int8_t *buffer, u_int16_t len, u_int8_t *data) | 102 | decode_base64(u_int8_t *buffer, u_int16_t len, u_int8_t *data) |
103 | #else | 103 | #else |