mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
179 B
13 lines
179 B
#include "stdio_impl.h"
|
|
|
|
static int dummy(int fd)
|
|
{
|
|
return fd;
|
|
}
|
|
|
|
weak_alias(dummy, __aio_close);
|
|
|
|
int __stdio_close(FILE *f)
|
|
{
|
|
return syscall(SYS_close, __aio_close(f->fd));
|
|
}
|
|
|