diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-26 06:59:43 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-26 06:59:43 +0000 |
commit | 2c2da19a5db07b4766325e24c9de66c86943be1d (patch) | |
tree | 5895513e7d6a822be30548fb828e6a3da0d2fb7f /gcc/collect2.c | |
parent | 49776ff6e4237053d42652730c86967804124806 (diff) | |
download | gcc-2c2da19a5db07b4766325e24c9de66c86943be1d.tar.gz |
Also make sure to define DIR_SEPARATOR if it wasn't previously defined.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30186 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/collect2.c')
-rw-r--r-- | gcc/collect2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/collect2.c b/gcc/collect2.c index 9138bcd6583..fbd59648c93 100644 --- a/gcc/collect2.c +++ b/gcc/collect2.c @@ -50,6 +50,7 @@ Boston, MA 02111-1307, USA. */ #include "intl.h" #ifndef DIR_SEPARATOR +# define DIR_SEPARATOR '/' # define IS_DIR_SEPARATOR(ch) ((ch) == '/') #else /* DIR_SEPARATOR */ # ifndef DIR_SEPARATOR_2 |