diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/crypto/crypto_tests/t_nfold.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/crypto/crypto_tests/t_nfold.c b/src/lib/crypto/crypto_tests/t_nfold.c index 6fa644a29..341a41ce7 100644 --- a/src/lib/crypto/crypto_tests/t_nfold.c +++ b/src/lib/crypto/crypto_tests/t_nfold.c @@ -25,10 +25,12 @@ */ #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <assert.h> -#include "crypto_int.h" +void krb5int_nfold(unsigned int inbits, const unsigned char *in, + unsigned int outbits, unsigned char *out); #define ASIZE(ARRAY) (sizeof(ARRAY)/sizeof(ARRAY[0])) |