summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--boot/boot.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/boot/boot.c b/boot/boot.c
index 71b47942..e369c20d 100644
--- a/boot/boot.c
+++ b/boot/boot.c
@@ -178,6 +178,12 @@ open (const char *name,
}
int
+fstat (int fd, struct stat *buf)
+{
+ return syscall (62, fd, buf);
+}
+
+int
close (int fd)
{
return syscall (6, fd);