2026-03-21 10:41:29 +00:00
|
|
|
#include <errno.h>
|
2026-05-28 20:39:54 +01:00
|
|
|
#include <magenta/handle.h>
|
|
|
|
|
#include <magenta/msg.h>
|
2026-03-21 10:41:29 +00:00
|
|
|
#include <rosetta/fs.h>
|
|
|
|
|
#include <sys/remote.h>
|
|
|
|
|
|
|
|
|
|
int close(int fd)
|
|
|
|
|
{
|
|
|
|
|
kern_handle_close(fd);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|