aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_malloc.c
diff options
context:
space:
mode:
authorMarvin Borner2020-05-07 22:19:13 +0200
committerMarvin Borner2020-05-07 22:19:13 +0200
commit9b2e28ad7a752c0fe7b60e73ca43c827b45b3ee8 (patch)
tree5b1b48ccf8324cced9ae9c4139b493cd98789cc2 /src/kernel/syscall/actions/sys_malloc.c
parent43184e40b14a5e41383ffb053e7c69c93ff81036 (diff)
Added and applied include-sorting
Worked better than I thought!
Diffstat (limited to 'src/kernel/syscall/actions/sys_malloc.c')
-rw-r--r--src/kernel/syscall/actions/sys_malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/syscall/actions/sys_malloc.c b/src/kernel/syscall/actions/sys_malloc.c
index da21a2d..750530d 100644
--- a/src/kernel/syscall/actions/sys_malloc.c
+++ b/src/kernel/syscall/actions/sys_malloc.c
@@ -1,5 +1,5 @@
-#include <stdint.h>
#include <memory/alloc.h>
+#include <stdint.h>
u32 sys_malloc(u32 count)
{