Test __VMS_POSIX as well as VMS.

This commit is contained in:
Richard M. Stallman
1995-02-23 07:43:50 +00:00
parent ba39f603a6
commit fcca25ad3c

View File

@@ -18,7 +18,7 @@ along with Bison; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifdef VMS #if defined (VMS) & !defined (__VMS_POSIX)
#include <ssdef.h> #include <ssdef.h>
#define unlink delete #define unlink delete
#ifndef XPFILE #ifndef XPFILE
@@ -108,7 +108,7 @@ openfiles()
int base_length; int base_length;
int short_base_length; int short_base_length;
#ifdef VMS #if defined (VMS) & !defined (__VMS_POSIX)
char *tmp_base = "sys$scratch:b_"; char *tmp_base = "sys$scratch:b_";
#else #else
char *tmp_base = "/tmp/b."; char *tmp_base = "/tmp/b.";
@@ -373,7 +373,7 @@ int k;
} }
} }
#ifdef VMS #if defined (VMS) & !defined (__VMS_POSIX)
if (faction) if (faction)
delete(actfile); delete(actfile);
if (fattrs) if (fattrs)
@@ -390,5 +390,5 @@ int k;
if (tmpdefsfile) unlink(tmpdefsfile); if (tmpdefsfile) unlink(tmpdefsfile);
#endif /* MSDOS */ #endif /* MSDOS */
exit(k); exit(k);
#endif /* not VMS */ #endif /* not VMS, or __VMS_POSIX */
} }