diff options
author | Yang Tse <yangsita@gmail.com> | 2010-02-26 18:32:46 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2010-02-26 18:32:46 +0000 |
commit | cef95aadebf0be4be6b4ed82e07f38cc83faf546 (patch) | |
tree | 25bc10d186d74e1289ce9fdb23bd553768aec8e3 /lib/config-win32ce.h | |
parent | 697496ff99be5842f380f8b2fd6789f623e376be (diff) | |
download | curl-cef95aadebf0be4be6b4ed82e07f38cc83faf546.tar.gz |
Added SIZEOF_INT and SIZEOF_SHORT definitions for non-configure systems
Diffstat (limited to 'lib/config-win32ce.h')
-rw-r--r-- | lib/config-win32ce.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/config-win32ce.h b/lib/config-win32ce.h index 57571b51f..058fcc0f0 100644 --- a/lib/config-win32ce.h +++ b/lib/config-win32ce.h @@ -310,12 +310,18 @@ /* TYPE SIZES */ /* ---------------------------------------------------------------- */ -/* The number of bytes in a long double. */ +/* The size of `int', as computed by sizeof. */ +#define SIZEOF_INT 4 + +/* The size of `long double', as computed by sizeof. */ #define SIZEOF_LONG_DOUBLE 16 -/* The number of bytes in a long long. */ +/* The size of `long long', as computed by sizeof. */ /* #define SIZEOF_LONG_LONG 8 */ +/* The size of `short', as computed by sizeof. */ +#define SIZEOF_SHORT 2 + /* ---------------------------------------------------------------- */ /* STRUCT RELATED */ /* ---------------------------------------------------------------- */ |