diff options
author | Stefan Krah <skrah@bytereef.org> | 2012-11-12 20:14:36 +0100 |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2012-11-12 20:14:36 +0100 |
commit | 6df5cae49a6ff61ce523361d30784893e59f3837 (patch) | |
tree | f23fabc87b5f00ca675dde481682aa0a14e68cc7 /Python/fileutils.c | |
parent | e667e98faad93e76b8b569d853eb02d91591f5fb (diff) | |
download | cpython-git-6df5cae49a6ff61ce523361d30784893e59f3837.tar.gz |
Issue #15835: Define PATH_MAX on HP-UX.
Diffstat (limited to 'Python/fileutils.c')
-rw-r--r-- | Python/fileutils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/fileutils.c b/Python/fileutils.c index 501cb8c8d6..976c04b117 100644 --- a/Python/fileutils.c +++ b/Python/fileutils.c @@ -1,4 +1,5 @@ #include "Python.h" +#include "osdefs.h" #ifdef MS_WINDOWS # include <windows.h> #endif |