Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57fcf96 commit fb8fe37Copy full SHA for fb8fe37
1 file changed
Include/internal/pycore_fileutils.h
@@ -109,7 +109,8 @@ PyAPI_FUNC(int) _Py_stat(
109
PyObject *path,
110
struct stat *status);
111
112
-extern int _Py_open(
+// Export for 'select' shared extension (Solaris newDevPollObject() uses it)
113
+PyAPI_FUNC(int) _Py_open(
114
const char *pathname,
115
int flags);
116
@@ -126,7 +127,8 @@ extern Py_ssize_t _Py_read(
126
127
void *buf,
128
size_t count);
129
-extern Py_ssize_t _Py_write(
130
+// Export for 'select' shared extension (Solaris devpoll_flush() uses it)
131
+PyAPI_FUNC(Py_ssize_t) _Py_write(
132
int fd,
133
const void *buf,
134
0 commit comments