mirror of
https://github.com/pret/agbcc.git
synced 2026-03-21 17:44:20 -05:00
15 lines
181 B
C
15 lines
181 B
C
/* connector for close */
|
|
|
|
#include <reent.h>
|
|
|
|
int
|
|
close (fd)
|
|
int fd;
|
|
{
|
|
#ifdef REENTRANT_SYSCALLS_PROVIDED
|
|
return _close_r (_REENT, fd);
|
|
#else
|
|
return _close (fd);
|
|
#endif
|
|
}
|