diff options
Diffstat (limited to 'libc/syscalls/sysclose.c')
-rw-r--r-- | libc/syscalls/sysclose.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libc/syscalls/sysclose.c b/libc/syscalls/sysclose.c new file mode 100644 index 0000000..632364a --- /dev/null +++ b/libc/syscalls/sysclose.c @@ -0,0 +1,14 @@ +/* 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 +} |