diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-02-22 07:21:24 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-02-22 07:21:24 -0500 |
commit | 3f44e3cdab4d191ee233602cfbb522b9a6dc9ecf (patch) | |
tree | 9e99ee231dc156107629974d33b502e868c0e9b9 | |
parent | 63a526f779d353f6b7cd6b77ac00cdb47ee310e0 (diff) | |
download | gcc-3f44e3cdab4d191ee233602cfbb522b9a6dc9ecf.zip gcc-3f44e3cdab4d191ee233602cfbb522b9a6dc9ecf.tar.gz gcc-3f44e3cdab4d191ee233602cfbb522b9a6dc9ecf.tar.bz2 |
(PATH_SEPARATOR): Add to here.
From-SVN: r6600
-rw-r--r-- | gcc/config/i386/xm-os2.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config/i386/xm-os2.h b/gcc/config/i386/xm-os2.h index be234d1..e20bf41 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 Free Software Foundation, Inc. + Copyright (C) 1993, 1994 Free Software Foundation, Inc. Contributed by Samuel Figueroa (figueroa@cs.nyu.edu) This file is part of GNU CC. @@ -41,6 +41,9 @@ 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 #define EXECUTABLE_SUFFIX ".exe" |