diff options
author | DJ Delorie <dj@redhat.com> | 2002-03-11 15:16:08 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2002-03-11 15:16:08 +0000 |
commit | dabc64ea5d50ed4e90b4ff2937e77309a2d34ab7 (patch) | |
tree | e24ac343a85beb8f29dac506f8f1cf864da26b5b /libiberty/xatexit.c | |
parent | 9a57864f61f106f3cd236dd2fafecda359f2b091 (diff) | |
download | gdb-dabc64ea5d50ed4e90b4ff2937e77309a2d34ab7.zip gdb-dabc64ea5d50ed4e90b4ff2937e77309a2d34ab7.tar.gz gdb-dabc64ea5d50ed4e90b4ff2937e77309a2d34ab7.tar.bz2 |
merge from gcc
Diffstat (limited to 'libiberty/xatexit.c')
-rw-r--r-- | libiberty/xatexit.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libiberty/xatexit.c b/libiberty/xatexit.c index 728254b..abf3407 100644 --- a/libiberty/xatexit.c +++ b/libiberty/xatexit.c @@ -33,8 +33,13 @@ failure. If you use @code{xatexit} to register functions, you must use #define size_t unsigned long #endif +#if VMS +#include <stdlib.h> +#include <unixlib.h> +#else /* For systems with larger pointers than ints, this must be declared. */ PTR malloc PARAMS ((size_t)); +#endif static void xatexit_cleanup PARAMS ((void)); |