diff options
author | Guido van Rossum <guido@python.org> | 1995-02-27 10:17:52 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-02-27 10:17:52 (GMT) |
commit | 051ab123b465685e714668099c0a6dd86de5673b (patch) | |
tree | 16ee109ab64b01f19e289a3c284c7ce9b70618fa /Include/osdefs.h | |
parent | 0fbec64c56e5f2644b4e23a458a42ca273fd4888 (diff) | |
download | cpython-051ab123b465685e714668099c0a6dd86de5673b.zip cpython-051ab123b465685e714668099c0a6dd86de5673b.tar.gz cpython-051ab123b465685e714668099c0a6dd86de5673b.tar.bz2 |
make the type a parameter of the DL_IMPORT macro, for Borland C
Diffstat (limited to 'Include/osdefs.h')
-rw-r--r-- | Include/osdefs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/osdefs.h b/Include/osdefs.h index 25c9c36..0c279f2 100644 --- a/Include/osdefs.h +++ b/Include/osdefs.h @@ -37,7 +37,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define DELIM '\n' #endif -#if defined(MSDOS) || defined(NT) +#if defined(MSDOS) || defined(NT) || defined(__BORLANDC__) #define SEP '\\' #define MAXPATHLEN 256 #define DELIM ';' |