9 lines
139 B
C
9 lines
139 B
C
#include <lib.h>
|
|
#define close _close
|
|
|
|
PUBLIC int close(fd)
|
|
int fd;
|
|
{
|
|
return(_callm1(FS, CLOSE, fd, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR));
|
|
}
|