diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-01-23 18:39:56 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-01-23 18:39:56 -0500 |
commit | 3de59d54ce4aab90199f728e593ed2c600efcbde (patch) | |
tree | d6d4a2943e1a3c9357ba754fd84f66281b4dde14 | |
parent | 6c8c8a4b0d5e6e71c88ba7dc4bbe37d5fd468611 (diff) | |
download | gcc-3de59d54ce4aab90199f728e593ed2c600efcbde.zip gcc-3de59d54ce4aab90199f728e593ed2c600efcbde.tar.gz gcc-3de59d54ce4aab90199f728e593ed2c600efcbde.tar.bz2 |
(PATH_SEPARATOR): New macro.
From-SVN: r6416
-rw-r--r-- | gcc/config/i386/os2.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/config/i386/os2.h b/gcc/config/i386/os2.h index 7d22db0..a35f333 100644 --- a/gcc/config/i386/os2.h +++ b/gcc/config/i386/os2.h @@ -1,6 +1,6 @@ /* Definitions of target machine 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. @@ -35,6 +35,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define LOCAL_INCLUDE_DIR "\\gcc\\include" #endif +#ifndef PATH_SEPARATOR +#define PATH_SEPARATOR ';' +#endif + #define YES_UNDERSCORES #include "i386/gstabs.h" |