source: asp3_tinet_ecnl_rx/trunk/musl-1.1.18/src/stdio/__stdio_close.c@ 400

Last change on this file since 400 was 400, checked in by coas-nagasima, 5 years ago

ファイルヘッダーの更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 179 bytes
Line 
1#include "stdio_impl.h"
2
3static int dummy(int fd)
4{
5 return fd;
6}
7
8weak_alias(dummy, __aio_close);
9
10int __stdio_close(FILE *f)
11{
12 return syscall(SYS_close, __aio_close(f->fd));
13}
Note: See TracBrowser for help on using the repository browser.