INTEGRATION: CWS os2port01 (1.1.1.1.162); FILE MERGED
2007/08/08 08:43:14 obr 1.1.1.1.162.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2006/12/28 14:54:34 ydario 1.1.1.1.162.1: OS/2 initial import.
This commit is contained in:
parent
23fbb40987
commit
98b9a81ca2
1 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
/* RCS $Id: dirbrk.c,v 1.2 2007-01-18 09:44:04 vg Exp $
|
||||
/* RCS $Id: dirbrk.c,v 1.3 2007-09-20 14:35:04 vg Exp $
|
||||
--
|
||||
-- SYNOPSIS
|
||||
-- Define the directory separator string.
|
||||
|
@ -27,8 +27,13 @@
|
|||
|
||||
#include "extern.h"
|
||||
|
||||
#ifdef __EMX__
|
||||
/* os2 uses /, \, and : */
|
||||
char* DirBrkStr = "/\\:";
|
||||
#else
|
||||
/* Unix only uses / */
|
||||
char* DirBrkStr = "/";
|
||||
#endif
|
||||
|
||||
/*
|
||||
** Return TRUE if the name is the full specification of a path name to a file
|
||||
|
|
Loading…
Reference in a new issue