blob: 773abdffc4077fde5188db66ab829f788abfa14b [file] [log] [blame]
Guido van Rossum355a33d1992-02-26 15:19:31 +00001/***********************************************************
Guido van Rossum5113f5f1992-04-05 14:20:22 +00002Copyright 1991, 1992 by Stichting Mathematisch Centrum, Amsterdam, The
Guido van Rossum355a33d1992-02-26 15:19:31 +00003Netherlands.
4
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI not be used in advertising or publicity pertaining to
13distribution of the software without specific, written prior permission.
14
15STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
16THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
18FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
21OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
23******************************************************************/
24
25/* Operating system dependencies */
26
27#ifdef macintosh
28#define SEP ':'
29#define MAXPATHLEN 256
Guido van Rossum9b9ccd31992-03-23 18:20:32 +000030#define DELIM ' '
Guido van Rossum355a33d1992-02-26 15:19:31 +000031#endif
32
33#ifdef MSDOS
34#define SEP '\\'
35#define MAXPATHLEN 256
Guido van Rossum9b9ccd31992-03-23 18:20:32 +000036#define DELIM ';'
Guido van Rossum355a33d1992-02-26 15:19:31 +000037#endif
38
Guido van Rossum9b9ccd31992-03-23 18:20:32 +000039/* Filename separator */
Guido van Rossum355a33d1992-02-26 15:19:31 +000040#ifndef SEP
41#define SEP '/'
42#endif
43
Guido van Rossum9b9ccd31992-03-23 18:20:32 +000044/* Max pathname length */
Guido van Rossum355a33d1992-02-26 15:19:31 +000045#ifndef MAXPATHLEN
46#define MAXPATHLEN 1024
47#endif
Guido van Rossum9b9ccd31992-03-23 18:20:32 +000048
49/* Search path entry delimiter */
50#ifndef DELIM
51#define DELIM ':'
52#endif