From 6e79af0f01248e37f3c3ae927fbc262639487be3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Wed, 12 Feb 1997 07:12:21 +0100 Subject: [PATCH] New file, defining INT8, INT16 and INT32, even if there's no pike. Rev: src/modules/_Crypto/include/crypto_types.h:1.1 --- src/modules/_Crypto/include/crypto_types.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/modules/_Crypto/include/crypto_types.h diff --git a/src/modules/_Crypto/include/crypto_types.h b/src/modules/_Crypto/include/crypto_types.h new file mode 100644 index 0000000000..bf5201ca9a --- /dev/null +++ b/src/modules/_Crypto/include/crypto_types.h @@ -0,0 +1,16 @@ +/* crypto_types.h + * + * Defines the types INT32 and INT8 */ + +#ifndef CRYPTO_TYPES_H_INCLUDED +#define CRYPTO_TYPES_H_INCLUDED + +#ifdef PIKE +#include <types.h> +#else /* !PIKE */ +#define INT32 long +#define INT16 short +#define INT8 char +#endif + +#endif /* CRYPTO_TYPES_H_INCLUDED */ -- GitLab