12 lines
178 B
C
12 lines
178 B
C
#include <errno.h>
|
|
#include <magenta/handle.h>
|
|
#include <magenta/msg.h>
|
|
#include <rosetta/fs.h>
|
|
#include <sys/remote.h>
|
|
|
|
int close(int fd)
|
|
{
|
|
kern_handle_close(fd);
|
|
return 0;
|
|
}
|