diff options
author | Damien Miller <djm@mindrot.org> | 2011-09-29 03:11:51 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2011-09-29 03:11:51 +0200 |
commit | 5ffe1c4b437a519c90b2017ce8afeef0f845207c (patch) | |
tree | 87dfd9f3199e4f86bcf3e9b915b37bba968ae53d /defines.h | |
parent | - (djm) [openbsd-compat/setenv.c] Forklift upgrade, including inclusion (diff) | |
download | openssh-5ffe1c4b437a519c90b2017ce8afeef0f845207c.tar.xz openssh-5ffe1c4b437a519c90b2017ce8afeef0f845207c.zip |
- (djm) [configure.ac defines.h] No need to detect sizeof(char); patch
from des AT des.no
Diffstat (limited to 'defines.h')
-rw-r--r-- | defines.h | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -25,7 +25,7 @@ #ifndef _DEFINES_H #define _DEFINES_H -/* $Id: defines.h,v 1.167 2011/06/03 01:17:49 tim Exp $ */ +/* $Id: defines.h,v 1.168 2011/09/29 01:11:56 djm Exp $ */ /* Constants */ @@ -194,11 +194,7 @@ typedef unsigned int u_int; #endif #ifndef HAVE_INTXX_T -# if (SIZEOF_CHAR == 1) -typedef char int8_t; -# else -# error "8 bit int type not found." -# endif +typedef signed char int8_t; # if (SIZEOF_SHORT_INT == 2) typedef short int int16_t; # else |