summaryrefslogtreecommitdiff
path: root/include/crypto_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/crypto_types.h')
-rw-r--r--include/crypto_types.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/include/crypto_types.h b/include/crypto_types.h
deleted file mode 100644
index 192cdef5..00000000
--- a/include/crypto_types.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/* $Id$
- *
- * Defines the types UINT32, UINT16 and UINT8 */
-
-#ifndef CRYPTO_TYPES_H_INCLUDED
-#define CRYPTO_TYPES_H_INCLUDED
-
-#ifdef PIKE
-# include "pike_types.h"
-# include "global.h"
-# define UINT32 unsigned INT32
-# define UINT16 unsigned INT16
-# define UINT8 unsigned INT8
-#else /* !PIKE */
-
-# ifdef LSH
-# include "lsh_types.h"
-
-# else /* !LSH */
-# define UINT32 unsigned long
-# define UINT16 unsigned short
-# define UINT8 unsigned char
-# endif /* !PIKE */
-#endif
-
-#endif /* CRYPTO_TYPES_H_INCLUDED */