libc/newlib/libc/syscalls/sysclose.c

11 lines
122 B
C

/* connector for close */
#include <reent.h>
#include <unistd.h>
int
close (int fd)
{
return _close_r (_REENT, fd);
}