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