diff options
author | deraadt <> | 1999-03-26 18:24:01 +0000 |
---|---|---|
committer | deraadt <> | 1999-03-26 18:24:01 +0000 |
commit | 308a44cee6f6d51963efc7b30cfc502cd3bb20b7 (patch) | |
tree | e264ca312c8aaad2e4c6aad63a0ba3c7ac4b556a /src/lib/libc/crypt | |
parent | 98fa353b36e7043d0509bd088b3925d736cab68b (diff) | |
download | openbsd-308a44cee6f6d51963efc7b30cfc502cd3bb20b7.tar.gz openbsd-308a44cee6f6d51963efc7b30cfc502cd3bb20b7.tar.bz2 openbsd-308a44cee6f6d51963efc7b30cfc502cd3bb20b7.zip |
use stdlib; millert
Diffstat (limited to 'src/lib/libc/crypt')
-rw-r--r-- | src/lib/libc/crypt/skipjack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/crypt/skipjack.c b/src/lib/libc/crypt/skipjack.c index 173b18fd3b..e700f40c39 100644 --- a/src/lib/libc/crypt/skipjack.c +++ b/src/lib/libc/crypt/skipjack.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | * Further optimized test implementation of SKIPJACK algorithm | 2 | * Further optimized test implementation of SKIPJACK algorithm |
3 | * Mark Tillotson <markt@chaos.org.uk>, 25 June 98 | 3 | * Mark Tillotson <markt@chaos.org.uk>, 25 June 98 |
4 | * Optimizations suit RISC (lots of registers) machine best. | 4 | * Optimizations suit RISC (lots of registers) machine best. |
5 | * | 5 | * |
6 | * based on unoptimized implementation of | 6 | * based on unoptimized implementation of |
@@ -13,7 +13,7 @@ | |||
13 | 13 | ||
14 | #include <sys/param.h> | 14 | #include <sys/param.h> |
15 | #include <skipjack.h> | 15 | #include <skipjack.h> |
16 | #include <sys/malloc.h> | 16 | #include <stdlib.h> |
17 | 17 | ||
18 | static const u_int8_t ftable[0x100] = | 18 | static const u_int8_t ftable[0x100] = |
19 | { | 19 | { |