diff options
Diffstat (limited to 'x2p/a2p.h')
-rw-r--r-- | x2p/a2p.h | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -9,7 +9,11 @@ */ #define VOIDUSED 1 -#include "../config.h" +#ifdef VMS +# include "config.h" +#else +# include "../config.h" +#endif #if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus) # define STANDARD_C 1 @@ -101,7 +105,7 @@ #else # if defined(VMS) # define NO_PERL_TYPEDEFS -# include "[-]vmsish.h" +# include "vmsish.h" # endif #endif @@ -113,7 +117,11 @@ char *strchr(), *strrchr(); char *strcpy(), *strcat(); #endif /* ! STANDARD_C */ -#include "../handy.h" +#ifdef VMS +# include "handy.h" +#else +# include "../handy.h" +#endif #undef Nullfp #define Nullfp Null(FILE*) |