aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
Diffstat (limited to 'libc')
-rw-r--r--libc/crt/crt0.asm2
-rw-r--r--libc/inc/sys.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/libc/crt/crt0.asm b/libc/crt/crt0.asm
index 5e3080f..006bcb2 100644
--- a/libc/crt/crt0.asm
+++ b/libc/crt/crt0.asm
@@ -10,6 +10,6 @@ _start:
call main
push eax
- push 6
+ push 7
call sys1
jmp $
diff --git a/libc/inc/sys.h b/libc/inc/sys.h
index 42b1c8a..a9f7820 100644
--- a/libc/inc/sys.h
+++ b/libc/inc/sys.h
@@ -11,6 +11,7 @@ enum sys {
SYS_LOOP, // To infinity and beyond (debug)!
SYS_MALLOC, // Allocate memory
SYS_FREE, // Free memory
+ SYS_STAT, // Get file information
SYS_READ, // Read file
SYS_WRITE, // Write to file
SYS_EXEC, // Execute path
@@ -67,6 +68,7 @@ int sysv(enum sys num, ...);
*/
#define loop() sys0(SYS_LOOP)
+#define stat(path) (u32) sys1(SYS_STAT, (int)(path))
#define read(path) (void *)sys1(SYS_READ, (int)(path))
#define write(path, buf) sys2(SYS_WRITE, (int)(path), (buf))
#define exec(path, ...) (int)sysv(SYS_EXEC, (int)(path), ##__VA_ARGS__)