Avoid using crypto_int.h in t_nfold.c for convenience on Solaris; just
authorGreg Hudson <ghudson@mit.edu>
Sun, 3 Apr 2011 12:31:13 +0000 (12:31 +0000)
committerGreg Hudson <ghudson@mit.edu>
Sun, 3 Apr 2011 12:31:13 +0000 (12:31 +0000)
prototype krb5int_nfold instead.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24826 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/crypto/crypto_tests/t_nfold.c

index 6fa644a29b8259ef02995945af26b69ca1db35eb..341a41ce7d9f53c7e5147d713ae6a7ec22f6700f 100644 (file)
  */
 
 #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]))