aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/syscall.h
diff options
context:
space:
mode:
authorMarvin Borner2020-05-06 19:04:05 +0200
committerMarvin Borner2020-05-06 19:04:05 +0200
commitd94ffac4a584dc7a4f6f2ec567b8caab05ce9253 (patch)
tree559cd596a0a407d4b40c1d12d3c6a0686494da16 /src/kernel/syscall/syscall.h
parent1a8563a05608b5b5e27eada44cf4790926001c68 (diff)
New build parameters and shared includes
This changes many files but I've just applied some replace commands.. So - nothing special!
Diffstat (limited to 'src/kernel/syscall/syscall.h')
-rw-r--r--src/kernel/syscall/syscall.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/kernel/syscall/syscall.h b/src/kernel/syscall/syscall.h
index 9af18e8..7261afc 100644
--- a/src/kernel/syscall/syscall.h
+++ b/src/kernel/syscall/syscall.h
@@ -2,26 +2,26 @@
#define MELVIX_SYSCALL_H
#include <stdint.h>
-#include <kernel/interrupts/interrupts.h>
+#include <interrupts/interrupts.h>
extern void idt_syscall();
void syscalls_install();
-uint32_t sys_exit(uint32_t code);
+u32 sys_exit(u32 code);
-uint32_t sys_fork(struct regs *r);
+u32 sys_fork(struct regs *r);
-uint32_t sys_read(char *path, uint32_t offset, uint32_t count, uint8_t *buf);
+u32 sys_read(char *path, u32 offset, u32 count, u8 *buf);
-uint32_t sys_write(char *path, uint32_t offset, uint32_t count, uint8_t *buf);
+u32 sys_write(char *path, u32 offset, u32 count, u8 *buf);
-uint32_t sys_exec(char *path);
+u32 sys_exec(char *path);
-uint32_t sys_get_pid();
+u32 sys_get_pid();
-uint32_t sys_malloc(uint32_t count);
+u32 sys_malloc(u32 count);
-uint32_t sys_free(uint32_t ptr);
+u32 sys_free(u32 ptr);
#endif \ No newline at end of file