summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2013-03-07 20:06:13 +1100
committerDarren Tucker <dtucker@zip.com.au>2013-03-07 20:06:13 +1100
commit9243ef086fa1afa804c7870fd1be7b466934c048 (patch)
treed5a5babe94d2c9a840b520b5b86ee3ffe264c76c
parentb3cd5037425c6541722745bef69ee52133d3491b (diff)
- (dtucker) [defines.h] Remove SIZEOF_CHAR bits since the test for it is
was removed in configure.ac rev 1.481 as it was redundant.
-rw-r--r--ChangeLog2
-rw-r--r--defines.h6
2 files changed, 3 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 0d922d5a..a3b27329 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
20130307
- (dtucker) [INSTALL] Bump documented autoconf version to what we're
currently using.
+ - (dtucker) [defines.h] Remove SIZEOF_CHAR bits since the test for it is
+ was removed in configure.ac rev 1.481 as it was redundant.
20130306
- (dtucker) [regress/forward-control.sh] Wait longer for the forwarding
diff --git a/defines.h b/defines.h
index 54de062d..64515c2f 100644
--- a/defines.h
+++ b/defines.h
@@ -25,7 +25,7 @@
#ifndef _DEFINES_H
#define _DEFINES_H
-/* $Id: defines.h,v 1.170 2012/12/04 15:50:04 tim Exp $ */
+/* $Id: defines.h,v 1.171 2013/03/07 09:06:13 dtucker Exp $ */
/* Constants */
@@ -227,11 +227,7 @@ typedef uint16_t u_int16_t;
typedef uint32_t u_int32_t;
# define HAVE_U_INTXX_T 1
# else
-# if (SIZEOF_CHAR == 1)
typedef unsigned char u_int8_t;
-# else
-# error "8 bit int type not found."
-# endif
# if (SIZEOF_SHORT_INT == 2)
typedef unsigned short int u_int16_t;
# else