11 lines
122 B
C
Raw Normal View History

2017-04-11 23:13:36 +02:00
/* connector for close */
#include <reent.h>
#include <unistd.h>
int
2018-12-28 16:30:48 +01:00
close (int fd)
2017-04-11 23:13:36 +02:00
{
return _close_r (_REENT, fd);
}