- (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.
This commit is contained in:
parent
b3cd503742
commit
9243ef086f
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue