From: Jeff Law Date: Tue, 26 Oct 1999 06:59:43 +0000 (-0600) Subject: Also make sure to define DIR_SEPARATOR if it wasn't previously defined. X-Git-Tag: prereleases/libstdc++-2.92~9876 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=608b12276ccdec80ed3d792afa64f288f5d11573;p=thirdparty%2Fgcc.git Also make sure to define DIR_SEPARATOR if it wasn't previously defined. From-SVN: r30186 --- diff --git a/gcc/collect2.c b/gcc/collect2.c index 9138bcd65839..fbd59648c936 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