Commit 9b9ccd3f authored by Guido van Rossum's avatar Guido van Rossum

Moved definition of search path DELIM here (from sysmodule.c).

parent e2437a19
......@@ -27,17 +27,26 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#ifdef macintosh
#define SEP ':'
#define MAXPATHLEN 256
#define DELIM ' '
#endif
#ifdef MSDOS
#define SEP '\\'
#define MAXPATHLEN 256
#define DELIM ';'
#endif
/* Filename separator */
#ifndef SEP
#define SEP '/'
#endif
/* Max pathname length */
#ifndef MAXPATHLEN
#define MAXPATHLEN 1024
#endif
/* Search path entry delimiter */
#ifndef DELIM
#define DELIM ':'
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment