As ftruncate is not availabe on all platforms, switch back to
[oweals/openssl.git] / crypto / md2 / md2.h
index 122e276d57c0a70ac0cfc37b20e184d075446697..0d3592506c4a5be2826257f2faef55fe3ed4bc28 100644 (file)
 extern "C" {
 #endif
 
+#ifdef NO_MD2
+#error MD2 is disabled.
+#endif
+
 #define MD2_DIGEST_LENGTH      16
 #define MD2_BLOCK              16
-#include "opensslconf.h" /* MD2_INT */
+#include <openssl/opensslconf.h> /* MD2_INT */
 
 typedef struct MD2state_st
        {
@@ -75,20 +79,11 @@ typedef struct MD2state_st
        MD2_INT state[MD2_BLOCK];
        } MD2_CTX;
 
-#ifndef NOPROTO
 const char *MD2_options(void);
 void MD2_Init(MD2_CTX *c);
 void MD2_Update(MD2_CTX *c, register unsigned char *data, unsigned long len);
 void MD2_Final(unsigned char *md, MD2_CTX *c);
 unsigned char *MD2(unsigned char *d, unsigned long n,unsigned char *md);
-#else
-const char *MD2_options();
-void MD2_Init();
-void MD2_Update();
-void MD2_Final();
-unsigned char *MD2();
-#endif
-
 #ifdef  __cplusplus
 }
 #endif