4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 04:49:25 +08:00

15 lines
191 B
C
Raw Normal View History

2000-02-17 19:39:52 +00:00
/* connector for close */
#include <reent.h>
int
_DEFUN (close, (fd),
int fd)
2000-02-17 19:39:52 +00:00
{
#ifdef REENTRANT_SYSCALLS_PROVIDED
return _close_r (_REENT, fd);
#else
return _close (fd);
#endif
}