blob: c83bb318207f26c1dfc2bc1d078363280b7f0c08 [file] [log] [blame]
#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));
}