Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
b279324e
Commit
b279324e
authored
May 25, 2013
by
Josh Ayers
Committed by
Stefan Behnel
Jul 14, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some missing declarations to libc/stdio.pxd.
parent
f7e9df29
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
5 deletions
+18
-5
Cython/Includes/libc/stdio.pxd
Cython/Includes/libc/stdio.pxd
+18
-5
No files found.
Cython/Includes/libc/stdio.pxd
View file @
b279324e
...
@@ -20,7 +20,10 @@ cdef extern from "stdio.h" nogil:
...
@@ -20,7 +20,10 @@ cdef extern from "stdio.h" nogil:
int
fclose
(
FILE
*
stream
)
int
fclose
(
FILE
*
stream
)
int
remove
(
const
char
*
filename
)
int
remove
(
const
char
*
filename
)
int
rename
(
const
char
*
oldname
,
const
char
*
newname
)
int
rename
(
const
char
*
oldname
,
const
char
*
newname
)
FILE
*
tmpfile
()
FILE
*
tmpfile
(
void
)
int
remove
(
const
char
*
pathname
)
int
rename
(
const
char
*
oldpath
,
const
char
*
newpath
)
enum
:
_IOFBF
enum
:
_IOFBF
enum
:
_IOLBF
enum
:
_IOLBF
...
@@ -34,6 +37,7 @@ cdef extern from "stdio.h" nogil:
...
@@ -34,6 +37,7 @@ cdef extern from "stdio.h" nogil:
int
fflush
(
FILE
*
stream
)
int
fflush
(
FILE
*
stream
)
enum
:
EOF
enum
:
EOF
void
clearerr
(
FILE
*
stream
)
int
feof
(
FILE
*
stream
)
int
feof
(
FILE
*
stream
)
int
ferror
(
FILE
*
stream
)
int
ferror
(
FILE
*
stream
)
...
@@ -62,6 +66,15 @@ cdef extern from "stdio.h" nogil:
...
@@ -62,6 +66,15 @@ cdef extern from "stdio.h" nogil:
char
*
gets
(
char
*
s
)
char
*
gets
(
char
*
s
)
char
*
fgets
(
char
*
s
,
int
count
,
FILE
*
stream
)
char
*
fgets
(
char
*
s
,
int
count
,
FILE
*
stream
)
int
getchar
(
void
)
int
fgetc
(
FILE
*
stream
)
int
getc
(
FILE
*
stream
)
int
ungetc
(
int
c
,
FILE
*
stream
)
int
puts
(
const
char
*
s
)
int
puts
(
const
char
*
s
)
int
fputs
(
const
char
*
s
,
FILE
*
stream
)
int
fputs
(
const
char
*
s
,
FILE
*
stream
)
int
putchar
(
int
c
)
int
fputc
(
int
c
,
FILE
*
stream
)
int
putc
(
int
c
,
FILE
*
stream
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment