diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1997-01-19 14:09:01 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1997-01-19 14:09:01 -0500 |
commit | 421fec1235030d16ce0f486de5e03faaa2848f1b (patch) | |
tree | 526097e17eea2bdc0cb8ecb08c8fe7c55831d96f | |
parent | 15e13f2cef0337fc256b27a246607e85e1c56ec0 (diff) | |
download | gcc-421fec1235030d16ce0f486de5e03faaa2848f1b.zip gcc-421fec1235030d16ce0f486de5e03faaa2848f1b.tar.gz gcc-421fec1235030d16ce0f486de5e03faaa2848f1b.tar.bz2 |
(DIR_SEPARATOR): Define.
From-SVN: r13513
-rw-r--r-- | gcc/config/i386/xm-cygwin32.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/config/i386/xm-cygwin32.h b/gcc/config/i386/xm-cygwin32.h index 786c4fe..b3f4c04 100644 --- a/gcc/config/i386/xm-cygwin32.h +++ b/gcc/config/i386/xm-cygwin32.h @@ -1,6 +1,6 @@ /* Configuration for GNU C-compiler for hosting on Windows NT. using a unix style C library. - Copyright (C) 1995, 1996 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. This file is part of GNU CC. @@ -25,3 +25,5 @@ Boston, MA 02111-1307, USA. */ #define HAVE_FILE_H #define EXECUTABLE_SUFFIX ".exe" +/* Even though we support "/", allow "\" since everybody tests both. */ +#define DIR_SEPARATOR '\\' |