| 1 | #include "stdio_impl.h" |
| 2 | #include "aio_impl.h" |
| 3 | |
| 4 | static int dummy(int fd) |
| 5 | { |
| 6 | 	return fd; |
| 7 | } |
| 8 | |
| 9 | weak_alias(dummy, __aio_close); |
| 10 | |
| 11 | int __stdio_close(FILE *f) |
| 12 | { |
| 13 | 	return syscall(SYS_close, __aio_close(f->fd)); |
| 14 | } |