Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sysclose.c « syscalls « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44ec36eb37cda2e84c43db5f752832d3a2c8c1b0 (plain)
1
2
3
4
5
6
7
8
9
10
/* connector for close */

#include <reent.h>
#include <unistd.h>

int
close (int fd)
{
  return _close_r (_REENT, fd);
}