7 lines
158 B
Rust
7 lines
158 B
Rust
use crate::object::PyObject;
|
|
|
|
extern "C" {
|
|
#[cfg_attr(PyPy, link_name = "PyPyOS_FSPath")]
|
|
pub fn PyOS_FSPath(path: *mut PyObject) -> *mut PyObject;
|
|
}
|