blob: 9095c2fdd3d638140db129937d29830286941819 [file] [log] [blame]
Ethan Furman410ef8e2016-06-04 12:06:26 -07001
2/* os module interface */
3
4#ifndef Py_OSMODULE_H
5#define Py_OSMODULE_H
6#ifdef __cplusplus
7extern "C" {
8#endif
9
Serhiy Storchaka34d0ac82016-12-27 14:57:39 +020010#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03060000
Ethan Furman410ef8e2016-06-04 12:06:26 -070011PyAPI_FUNC(PyObject *) PyOS_FSPath(PyObject *path);
Serhiy Storchaka34d0ac82016-12-27 14:57:39 +020012#endif
Ethan Furman410ef8e2016-06-04 12:06:26 -070013
14#ifdef __cplusplus
15}
16#endif
17#endif /* !Py_OSMODULE_H */