aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/syscalls/sysclose.c
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);
}