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