projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix behavior of printf with alt-form octal, zero precision, zero value
[oweals/musl.git]
/
src
/
stdio
/
__stdio_close.c
1
#include "stdio_impl.h"
2
3
int __stdio_close(FILE *f)
4
{
5
return syscall(SYS_close, f->fd);
6
}