diff options
author | 1999-03-26 18:24:01 +0000 | |
---|---|---|
committer | 1999-03-26 18:24:01 +0000 | |
commit | 71bd0a8d3a11a519d906e6a8d5727d8b05d85e60 (patch) | |
tree | 81e1ec5d2b5e6215c3b04de05c2b69c6c3e2aa90 /lib | |
parent | Add bridge interface handling (diff) | |
download | wireguard-openbsd-71bd0a8d3a11a519d906e6a8d5727d8b05d85e60.tar.xz wireguard-openbsd-71bd0a8d3a11a519d906e6a8d5727d8b05d85e60.zip |
use stdlib; millert
Diffstat (limited to 'lib')
-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] = { |