Commit 5bcda311 authored by Robert Bradshaw's avatar Robert Bradshaw

Merge pull request #250 from larsmans/opaque-fpos

make fpos_t an opaque type
parents ffc5ffb0 68ccad8d
......@@ -48,7 +48,7 @@ cdef extern from "stdio.h" nogil:
void rewind (FILE *stream)
long int ftell (FILE *stream)
ctypedef long long int fpos_t
ctypedef struct fpos_t
ctypedef const fpos_t const_fpos_t "const fpos_t"
int fgetpos (FILE *stream, fpos_t *position)
int fsetpos (FILE *stream, const fpos_t *position)
......
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