summaryrefslogtreecommitdiffstats
path: root/newlib/libc/syscalls/sysclose.c
blob: d05d2866cee5fcd9518d1faa62bc9b1d8a22758d (plain)
1
2
3
4
5
6
7
8
9
10
/* connector for close */

#include <reent.h>

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