diff options
author | Marvin Borner | 2021-02-25 20:45:10 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-25 20:45:10 +0100 |
commit | a9710cb73cc9ecadaff241428a39a26935cb5c0a (patch) | |
tree | 68f509407bc49a4da43ccadfd9115b9e6f7eb413 /libc/inc/sys.h | |
parent | 26587adae4f5ec61d03fd7075805a24b29107fe3 (diff) |
Applied even more warning flags!
Fixing all the warnings wasn't that easy actually..
Diffstat (limited to 'libc/inc/sys.h')
-rw-r--r-- | libc/inc/sys.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/inc/sys.h b/libc/inc/sys.h index be4352f..5858579 100644 --- a/libc/inc/sys.h +++ b/libc/inc/sys.h @@ -65,7 +65,7 @@ int sysv(enum sys num, ...); * Syscall wrappers */ -#define loop() sys0(SYS_LOOP) +#define loop(void) sys0(SYS_LOOP) #define read(path, buf, offset, count) \ (s32) sys4(SYS_READ, (int)(path), (int)(buf), (int)(offset), (int)(count)) #define write(path, buf, offset, count) \ @@ -80,10 +80,10 @@ int sysv(enum sys num, ...); yield(); \ } \ } -#define yield() (int)sys0(SYS_YIELD) -#define time() (u32) sys0(SYS_TIME) +#define yield(void) (int)sys0(SYS_YIELD) +#define time(void) (u32) sys0(SYS_TIME) -static inline u32 getpid() +static inline u32 getpid(void) { u32 buf = 0; read("/proc/self/pid", &buf, 0, sizeof(buf)); |