diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-02-13 14:34:43 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-02-13 14:34:43 +0000 |
commit | 86945974021c9a818b444bb95320a15de7df70c1 (patch) | |
tree | 3e7a3f952c838ff3b73584243edb4005c53996dd /gcc/config/i386/xm-os2.h | |
parent | 1e79f32d04a6a04dd6002185656c2a669420cf63 (diff) | |
download | gcc-86945974021c9a818b444bb95320a15de7df70c1.tar.gz |
(DIR_SEPARATOR): Define if not already.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8927 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/xm-os2.h')
-rw-r--r-- | gcc/config/i386/xm-os2.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/config/i386/xm-os2.h b/gcc/config/i386/xm-os2.h index e20bf418d54..23cab2fcdb7 100644 --- a/gcc/config/i386/xm-os2.h +++ b/gcc/config/i386/xm-os2.h @@ -1,6 +1,6 @@ /* Configuration for GNU compiler for an Intel i386 or later processor running OS/2 2.x. - Copyright (C) 1993, 1994 Free Software Foundation, Inc. + Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc. Contributed by Samuel Figueroa (figueroa@cs.nyu.edu) This file is part of GNU CC. @@ -41,9 +41,13 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ int spawnv (int modeflag, char *path, char *argv[]); int spawnvp (int modeflag, char *path, char *argv[]); #endif /* __IBMC__ */ + #ifndef PATH_SEPARATOR #define PATH_SEPARATOR ';' #endif +#ifndef DIR_SEPARATOR +#define DIR_SEPARATOR '\\' +#endif #define EXECUTABLE_SUFFIX ".exe" |