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/blowfish.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/blowfish.c')
| -rw-r--r-- | src/lib/libc/crypt/blowfish.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/crypt/blowfish.c b/src/lib/libc/crypt/blowfish.c index b9cd41f960..9f1c79b0e7 100644 --- a/src/lib/libc/crypt/blowfish.c +++ b/src/lib/libc/crypt/blowfish.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: blowfish.c,v 1.5 1997/07/23 20:58:27 kstailey Exp $ */ | 1 | /* $OpenBSD: blowfish.c,v 1.6 1997/07/25 20:30:00 mickey Exp $ */ |
| 2 | /* | 2 | /* |
| 3 | * Blowfish block cipher for OpenBSD | 3 | * Blowfish block cipher for OpenBSD |
| 4 | * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> | 4 | * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> |
| @@ -441,7 +441,7 @@ Blowfish_initstate(c) | |||
| 441 | 441 | ||
| 442 | } | 442 | } |
| 443 | 443 | ||
| 444 | #if __STDC__ | 444 | #ifdef __STDC__ |
| 445 | u_int32_t | 445 | u_int32_t |
| 446 | Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, u_int16_t *current) | 446 | Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, u_int16_t *current) |
| 447 | #else | 447 | #else |
