Retro68/gcc/newlib/libc/syscalls/sysclose.c
Wolfgang Thaller d464252791 re-add newlib
2017-04-11 23:13:36 +02:00

12 lines
141 B
C

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