From: Yang Tse Date: Fri, 5 Mar 2010 02:14:19 +0000 (+0000) Subject: Added SIZEOF_INT and SIZEOF_SHORT definitions for VMS configuration file X-Git-Tag: curl-7_20_1~113 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=52f088ec1bec69e35efd2ac3bb5b95d9ce82bd46;p=thirdparty%2Fcurl.git Added SIZEOF_INT and SIZEOF_SHORT definitions for VMS configuration file --- diff --git a/packages/vms/config-vms.h b/packages/vms/config-vms.h index b7da92f593..aae88e7c04 100644 --- a/packages/vms/config-vms.h +++ b/packages/vms/config-vms.h @@ -30,12 +30,18 @@ /* Define if you can safely include both and . */ #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