diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/fileutils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/fileutils.h b/Include/fileutils.h index 9b2d34d..1d8df15 100644 --- a/Include/fileutils.h +++ b/Include/fileutils.h @@ -19,7 +19,7 @@ PyAPI_FUNC(int) _Py_wstat( #ifdef HAVE_STAT PyAPI_FUNC(int) _Py_stat( - PyObject *unicode, + PyObject *path, struct stat *statbuf); #endif @@ -28,7 +28,7 @@ PyAPI_FUNC(FILE *) _Py_wfopen( const wchar_t *mode); PyAPI_FUNC(FILE*) _Py_fopen( - PyObject *unicode, + PyObject *path, const char *mode); #ifdef HAVE_READLINK |