* choose-temp.c (DIR_SEPARATOR): Use '\\' only for native windows32.

From-SVN: r26619
This commit is contained in:
Mumit Khan 1999-04-25 00:23:06 +00:00 committed by Jeff Law
parent 7af06410ba
commit 7a1528bc63
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Sun Apr 25 01:18:21 1999 Mumit Khan <khan@xraylith.wisc.edu>
* choose-temp.c (DIR_SEPARATOR): Use '\\' only for native windows32.
1999-04-20 Jim Blandy <jimb@zwingli.cygnus.com>
Fix from Dale Hawkins:

View File

@ -48,7 +48,7 @@ Boston, MA 02111-1307, USA. */
extern int mkstemps ();
#ifndef IN_GCC
#if defined (__MSDOS__) || defined (_WIN32)
#if defined (__MSDOS__) || (defined (_WIN32) && ! defined (__CYGWIN__) && ! defined (_UWIN))
#define DIR_SEPARATOR '\\'
#endif
#endif