From f700ba6668dbdb91a03b2c5aa387eb4cabae8fcd Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 21 Aug 2020 20:39:48 +0200 Subject: Some things here and some things there --- libc/inc/sys.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/inc') diff --git a/libc/inc/sys.h b/libc/inc/sys.h index 88d83df..e776f44 100644 --- a/libc/inc/sys.h +++ b/libc/inc/sys.h @@ -35,9 +35,9 @@ int sysv(enum sys num, ...); #define read(path) (void *)sys1(SYS_READ, (int)path) #define write(path, buf) sys2(SYS_WRITE, (int)path, buf) #define exec(path, ...) sysv(SYS_EXEC, (int)path, ##__VA_ARGS__) -#define exit() \ +#define exit(status) \ { \ - sys0(SYS_EXIT); \ + sys1(SYS_EXIT, (int)status); \ while (1) { \ } \ } -- cgit v1.2.3