diff options
author | Yang Tse <yangsita@gmail.com> | 2010-03-05 02:14:19 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2010-03-05 02:14:19 +0000 |
commit | 52f088ec1bec69e35efd2ac3bb5b95d9ce82bd46 (patch) | |
tree | 559f05a2f142c2f17f94a95689507538c443149f /packages/vms | |
parent | a0fba2f66b8bf553633322c36d1c60366d6a9399 (diff) | |
download | curl-52f088ec1bec69e35efd2ac3bb5b95d9ce82bd46.tar.gz |
Added SIZEOF_INT and SIZEOF_SHORT definitions for VMS configuration file
Diffstat (limited to 'packages/vms')
-rw-r--r-- | packages/vms/config-vms.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/packages/vms/config-vms.h b/packages/vms/config-vms.h index b7da92f59..aae88e7c0 100644 --- a/packages/vms/config-vms.h +++ b/packages/vms/config-vms.h @@ -30,12 +30,18 @@ /* Define if you can safely include both <sys/time.h> and <time.h>. */ #define TIME_WITH_SYS_TIME 1 -/* 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 8 -/* 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 + /* Define if you have the alarm function. */ #define HAVE_ALARM 1 |