* src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
+2000-12-19 Akim Demaille <akim@epita.fr>
+
+ * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
+ * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
+
2000-12-19 Akim Demaille <akim@epita.fr>
* src/files.c (open_files): Yipee! We no longer need all the code
#include "system.h"
-
-#if defined (VMS) & !defined (__VMS_POSIX)
-# ifndef BISON_SIMPLE
-# define BISON_SIMPLE "GNU_BISON:[000000]BISON.SIMPLE"
-# endif
-# ifndef BISON_HAIRY
-# define BISON_HARIRY "GNU_BISON:[000000]BISON.HAIRY"
-# endif
-#endif
-
-#if defined (_MSC_VER)
-# ifndef BISON_SIMPLE
-# define BISON_SIMPLE "c:/usr/local/lib/bison.simple"
-# endif
-# ifndef BISON_HAIRY
-# define BISON_HAIRY "c:/usr/local/lib/bison.hairy"
-# endif
-#endif
-
#include "getargs.h"
#include "files.h"
#include "xalloc.h"
open_files (void)
{
char *name_base;
-#ifdef MSDOS
- register char *cp;
-#endif
int base_length;
int short_base_length;
# define EXT_GUARD_C ".guard.c"
# endif /* ! MSDOS */
#endif /* ! VMS */
+
+#if defined (VMS) & !defined (__VMS_POSIX)
+# ifndef BISON_SIMPLE
+# define BISON_SIMPLE "GNU_BISON:[000000]BISON.SIMPLE"
+# endif
+# ifndef BISON_HAIRY
+# define BISON_HARIRY "GNU_BISON:[000000]BISON.HAIRY"
+# endif
+#endif
+
+#if defined (_MSC_VER)
+# ifndef BISON_SIMPLE
+# define BISON_SIMPLE "c:/usr/local/lib/bison.simple"
+# endif
+# ifndef BISON_HAIRY
+# define BISON_HAIRY "c:/usr/local/lib/bison.hairy"
+# endif
+#endif