diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-11-05 14:11:34 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-11-05 14:11:34 (GMT) |
commit | ce43f38ace1122a7561da0a73ceea6743974608d (patch) | |
tree | 9705c36fa3a8828a42234de9de0ac3ecc52b5825 /Modules/main.c | |
parent | 68b11d129dc28f741e5522fe07b4b935c0d59198 (diff) | |
download | cpython-ce43f38ace1122a7561da0a73ceea6743974608d.zip cpython-ce43f38ace1122a7561da0a73ceea6743974608d.tar.gz cpython-ce43f38ace1122a7561da0a73ceea6743974608d.tar.bz2 |
Issue #20597: Remove unused definition of PATH_MAX on Windows, MAXPATHLEN is
now preferred. Patch written by Jeffrey Armstrong.
Diffstat (limited to 'Modules/main.c')
-rw-r--r-- | Modules/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/main.c b/Modules/main.c index 8a9f5a2..c4883c9 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -9,7 +9,6 @@ #include <windows.h> #ifdef HAVE_FCNTL_H #include <fcntl.h> -#define PATH_MAX MAXPATHLEN #endif #endif |