Files
rosetta/lib/libc/io/unistd/close.c

12 lines
174 B
C
Raw Normal View History

2026-03-21 10:41:29 +00:00
#include <errno.h>
#include <mango/handle.h>
#include <mango/msg.h>
#include <rosetta/fs.h>
#include <sys/remote.h>
int close(int fd)
{
kern_handle_close(fd);
return 0;
}