Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9b9ccd3

Browse files
committed
Moved definition of search path DELIM here (from sysmodule.c).
1 parent e2437a1 commit 9b9ccd3

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

Include/osdefs.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,26 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2727
#ifdef macintosh
2828
#define SEP ':'
2929
#define MAXPATHLEN 256
30+
#define DELIM ' '
3031
#endif
3132

3233
#ifdef MSDOS
3334
#define SEP '\\'
3435
#define MAXPATHLEN 256
36+
#define DELIM ';'
3537
#endif
3638

39+
/* Filename separator */
3740
#ifndef SEP
3841
#define SEP '/'
3942
#endif
4043

44+
/* Max pathname length */
4145
#ifndef MAXPATHLEN
4246
#define MAXPATHLEN 1024
4347
#endif
48+
49+
/* Search path entry delimiter */
50+
#ifndef DELIM
51+
#define DELIM ':'
52+
#endif

0 commit comments

Comments
 (0)