index
:
musl
master
rs-1.0
musl - an implementation of the standard library for Linux-based systems
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
stdio
/
__stdio_close.c
blob: 9f7ee18c23fa98837aa44f49b2d58ecef8b3e4a6 (
plain
) (
blame
)
1
2
3
4
5
6
#include "stdio_impl.h" int __stdio_close(FILE *f) { return syscall(SYS_close, f->fd); }