diff options
author | Douglas B Rupp <rupp@gnat.com> | 2002-03-11 07:47:53 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2002-03-11 07:47:53 -0500 |
commit | 50c7457998d11b46ac3a74656e1acff12acd0219 (patch) | |
tree | 05d3b0904b4d998afd6ff712b578f15f105f2c4f /libiberty/xatexit.c | |
parent | 1682dbb1d7b721fbca595b1e9dbf6901ca2de271 (diff) | |
download | gcc-50c7457998d11b46ac3a74656e1acff12acd0219.zip gcc-50c7457998d11b46ac3a74656e1acff12acd0219.tar.gz gcc-50c7457998d11b46ac3a74656e1acff12acd0219.tar.bz2 |
* xatexit.c [VMS]: Include stdlib.h and unixlib.h.
From-SVN: r50575
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)); |