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: 946544bed31fcc6f23a02e731ac23c5c033098fc (plain)
1
2
3
4
5
6
7
8
9
10
11
/* connector for close */

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

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