This website requires JavaScript.
Explore
Help
Sign In
fluencelabs
/
musl
Watch
1
Star
0
Fork
0
You've already forked musl
mirror of
https://github.com/fluencelabs/musl
synced
2025-05-22 04:01:34 +00:00
Code
Issues
Projects
Releases
Wiki
Activity
musl
/
src
/
stdio
/
__stdio_close.c
7 lines
91 B
C
Raw
Normal View
History
Unescape
Escape
initial check-in, version 0.5.0
2011-02-12 00:22:29 -05:00
#
include
"stdio_impl.h"
int
__stdio_close
(
FILE
*
f
)
{
global cleanup to use the new syscall interface
2011-03-20 00:16:43 -04:00
return
syscall
(
SYS_close
,
f
-
>
fd
)
;
initial check-in, version 0.5.0
2011-02-12 00:22:29 -05:00
}
Reference in New Issue
Copy Permalink