diff options
Diffstat (limited to 'boot/boot.c')
-rw-r--r-- | boot/boot.c | 6 |
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); |