summaryrefslogtreecommitdiff
path: root/lib/defines.h
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-09-17 17:57:59 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-09-17 17:57:59 +0000
commit61d4c25ee8c5c48cc68ff79ce6293da84b798634 (patch)
treeb605220748dffe51d51bcc1105ce0c4eee85de9e /lib/defines.h
parent2629ceb42edbdefe10ca3edfe1cfd96069a81561 (diff)
downloadgnutls-61d4c25ee8c5c48cc68ff79ce6293da84b798634.tar.gz
Added support for the LZO compression library in gnutls-extra. Some fixes in the hello message parsing.
Diffstat (limited to 'lib/defines.h')
-rw-r--r--lib/defines.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/defines.h b/lib/defines.h
index dd918865d7..bd418f1fdd 100644
--- a/lib/defines.h
+++ b/lib/defines.h
@@ -93,7 +93,7 @@ typedef long ptrdiff_t;
# define USE_MCRYPT
#endif
-#if SIZEOF_UNSIGNED_LONG_INT == 8
+#if SIZEOF_UNSIGNED_LONG == 8
# define HAVE_UINT64
/* only used native uint64 in 64 bit machines */
typedef unsigned long int uint64;
@@ -107,7 +107,7 @@ typedef struct {
#endif
-#if SIZEOF_UNSIGNED_LONG_INT == 4
+#if SIZEOF_UNSIGNED_LONG == 4
typedef unsigned long int uint32;
typedef signed long int sint32;
#elif SIZEOF_UNSIGNED_INT == 4
@@ -120,7 +120,7 @@ typedef signed int sint32;
#if SIZEOF_UNSIGNED_INT == 2
typedef unsigned int uint16;
typedef signed int sint16;
-#elif SIZEOF_UNSIGNED_SHORT_INT == 2
+#elif SIZEOF_UNSIGNED_SHORT == 2
typedef unsigned short int uint16;
typedef signed short int sint16;
#else