Commit 0537679c authored by Dmytro's avatar Dmytro

add fdopen declaration to stdio.pxd

parent 91d85432
......@@ -16,6 +16,7 @@ cdef extern from "stdio.h" nogil:
enum: FILENAME_MAX
FILE *fopen (const char *filename, const char *opentype)
FILE *freopen (const char *filename, const char *opentype, FILE *stream)
FILE *fdopen (int fdescriptor, const char *opentype)
int fclose (FILE *stream)
int remove (const char *filename)
int rename (const char *oldname, const char *newname)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment