diff options
author | Craig A. Berry <craigberry@mac.com> | 2011-08-27 22:07:43 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2011-08-27 22:07:43 -0500 |
commit | 3ce52d1b0bdd5e6184ebb6643612f1de9600586d (patch) | |
tree | 0f8f3b86f0a04536206a1222f82248a542fed274 /vms | |
parent | 1ed240b748e3e57ddb97e1ee9e41c543ca8362d8 (diff) | |
download | perl-3ce52d1b0bdd5e6184ebb6643612f1de9600586d.tar.gz |
Remove unnecessary includes from vms/vms.c.
A couple are only needed for the homegrown utime() replacement on
older systems. rmsdef.h is apparently not needed at all.
Diffstat (limited to 'vms')
-rw-r--r-- | vms/vms.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -26,7 +26,11 @@ #include <acedef.h> #include <acldef.h> #include <armdef.h> +#if __CRTL_VER < 70300000 +/* needed for home-rolled utime() */ #include <atrdef.h> +#include <fibdef.h> +#endif #include <chpdef.h> #include <clidef.h> #include <climsgdef.h> @@ -34,7 +38,6 @@ #include <descrip.h> #include <devdef.h> #include <dvidef.h> -#include <fibdef.h> #include <float.h> #include <fscndef.h> #include <iodef.h> @@ -44,7 +47,6 @@ #include <libdef.h> #include <lib$routines.h> #include <lnmdef.h> -#include <msgdef.h> #include <ossdef.h> #if __CRTL_VER >= 70301000 && !defined(__VAX) #include <ppropdef.h> @@ -61,7 +63,6 @@ #include <uaidef.h> #include <uicdef.h> #include <stsdef.h> -#include <rmsdef.h> #if __CRTL_VER >= 70000000 /* FIXME to earliest version */ #include <efndef.h> #define NO_EFN EFN$C_ENF |