mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 21:49:33 +00:00
12 lines
141 B
C
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);
|
||
|
}
|