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-tpf.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-tpf.h')
-rw-r--r-- | lib/config-tpf.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/config-tpf.h b/lib/config-tpf.h index efbd9b429..3e494f7c9 100644 --- a/lib/config-tpf.h +++ b/lib/config-tpf.h @@ -598,13 +598,19 @@ /* Define to the type of arg 5 for `select'. */ #define SELECT_TYPE_ARG5 (struct timeval *) -/* The size of an `off_t', as computed by sizeof. */ +/* The size of `int', as computed by sizeof. */ +#define SIZEOF_INT 4 + +/* The size of `off_t', as computed by sizeof. */ #define SIZEOF_OFF_T 8 -/* The size of a `size_t', as computed by sizeof. */ +/* The size of `short', as computed by sizeof. */ +#define SIZEOF_SHORT 2 + +/* The size of `size_t', as computed by sizeof. */ #define SIZEOF_SIZE_T 8 -/* The size of a `time_t', as computed by sizeof. */ +/* The size of `time_t', as computed by sizeof. */ #define SIZEOF_TIME_T 8 /* Define to 1 if you have the ANSI C header files. */ |