VMS: only use _realloc32 with /POINTER_SIZE=32
authorRichard Levitte <levitte@openssl.org>
Tue, 6 Sep 2016 15:39:35 +0000 (17:39 +0200)
committerRichard Levitte <levitte@openssl.org>
Thu, 15 Sep 2016 08:33:42 +0000 (10:33 +0200)
commitb05f231cd97d80a2a46b6f4d0b145e84c729c39b
tree31aa35f72f7eaf1233ca4fc9dbcfe5989c46eaef
parent68f11e82d9c19e104f34bd5186decc98566738ca
VMS: only use _realloc32 with /POINTER_SIZE=32

This fixes the following error when building with no particular pointer size
is specified (implied 32 bit):

    static void *(*realloc_func) (void *, size_t) = realloc;
    ................................................^
    %CC-E-UNDECLARED, In the initializer for realloc_func, "_realloc32" is not declared.
    at line number 93 in file DEV:[OPENSSL102.crypto]mem.c;1

Reviewed-by: Andy Polyakov <appro@openssl.org>
crypto/mem.c