diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1998-10-19 07:02:44 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1998-10-19 07:02:44 +0000 |
commit | 6f71a643a0006dd0b3fa05e7dee38659a8cc1041 (patch) | |
tree | 8f91ea5b19fc41b08eb78e40abc6a9eb726e137f | |
parent | 4afbaa319c6f11b8bc3910f8b5c269861f4e7611 (diff) | |
download | perl-6f71a643a0006dd0b3fa05e7dee38659a8cc1041.tar.gz |
vmesaish.h doesn't exclude unixish.h.
p4raw-id: //depot/cfgperl@2018
-rw-r--r-- | perl.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1292,6 +1292,10 @@ typedef I32 (*filter_t) _((int, SV *, int)); #define FILTER_DATA(idx) (AvARRAY(PL_rsfp_filters)[idx]) #define FILTER_ISREADER(idx) (idx >= AvFILLp(PL_rsfp_filters)) +#if defined(__OPEN_VM) +# include "vmesa/vmesaish.h" +#endif + #ifdef DOSISH # if defined(OS2) # include "os2ish.h" @@ -1311,11 +1315,7 @@ typedef I32 (*filter_t) _((int, SV *, int)); # if defined(__VOS__) # include "vosish.h" # else -# if defined(__OPEN_VM) -# include "vmesa/vmesaish.h" -# else -# include "unixish.h" -# endif +# include "unixish.h" # endif # endif # endif |