diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-03-26 18:24:02 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-03-26 18:24:02 +0000 |
commit | 0e55090d299a842d2ecdcea9c5a0102b5fea351b (patch) | |
tree | 53bc6a047782dcbfed018a0ff814af33f60ff90c | |
parent | 262c72348dc591c0731e955a45f2a172c192ff77 (diff) |
use stdlib; millert
-rw-r--r-- | lib/libc/crypt/skipjack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/crypt/skipjack.c b/lib/libc/crypt/skipjack.c index 173b18fd3b6..e700f40c39c 100644 --- a/lib/libc/crypt/skipjack.c +++ b/lib/libc/crypt/skipjack.c @@ -1,6 +1,6 @@ /* * Further optimized test implementation of SKIPJACK algorithm - * Mark Tillotson <markt@chaos.org.uk>, 25 June 98
+ * Mark Tillotson <markt@chaos.org.uk>, 25 June 98 * Optimizations suit RISC (lots of registers) machine best. * * based on unoptimized implementation of @@ -13,7 +13,7 @@ #include <sys/param.h> #include <skipjack.h> -#include <sys/malloc.h> +#include <stdlib.h> static const u_int8_t ftable[0x100] = { |