summaryrefslogtreecommitdiffstats
path: root/Include/fileutils.h
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-10-07 22:29:53 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-10-07 22:29:53 (GMT)
commit015f4d87ab0f7d0888a9f20672feaec373f8ef36 (patch)
tree4b3444f0d329c5b4283a6f9b77e77026552d093c /Include/fileutils.h
parenta4a759515e2e0114d41acdada3642265c01270ac (diff)
downloadcpython-015f4d87ab0f7d0888a9f20672feaec373f8ef36.zip
cpython-015f4d87ab0f7d0888a9f20672feaec373f8ef36.tar.gz
cpython-015f4d87ab0f7d0888a9f20672feaec373f8ef36.tar.bz2
_Py_wrealpath() requires the size of the output buffer
Diffstat (limited to 'Include/fileutils.h')
-rw-r--r--Include/fileutils.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Include/fileutils.h b/Include/fileutils.h
index 1d8df15..a232460 100644
--- a/Include/fileutils.h
+++ b/Include/fileutils.h
@@ -41,7 +41,8 @@ PyAPI_FUNC(int) _Py_wreadlink(
#ifdef HAVE_REALPATH
PyAPI_FUNC(wchar_t*) _Py_wrealpath(
const wchar_t *path,
- wchar_t *resolved_path);
+ wchar_t *resolved_path,
+ size_t resolved_path_size);
#endif
PyAPI_FUNC(wchar_t*) _Py_wgetcwd(