diff options
author | Marvin Borner | 2019-12-21 12:25:14 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-21 12:25:14 +0100 |
commit | 38610cd06dc0b5a3a4ee46f5fe7c341191aa2bc1 (patch) | |
tree | 759378766ee6b22d72a0f2fded1b0dd530376a6e /src/userspace/mlibc/stdlib.h | |
parent | 07530dd08e0b29573712b54543a7fc42672bb34b (diff) |
Some userspace improvements
GAS is bad, NASM is awesome.
Diffstat (limited to 'src/userspace/mlibc/stdlib.h')
-rw-r--r-- | src/userspace/mlibc/stdlib.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/userspace/mlibc/stdlib.h b/src/userspace/mlibc/stdlib.h index ff8603c..36a3b5f 100644 --- a/src/userspace/mlibc/stdlib.h +++ b/src/userspace/mlibc/stdlib.h @@ -3,6 +3,12 @@ #include <stdint.h> +#ifndef MELVIX_ALLOC_H + +#include <mlibc/stdlib/liballoc.h> + +#endif + #ifndef MELVIX_STRING_H #include <mlibc/string.h> |