diff options
author | Ian Moffett <ian@osmora.org> | 2025-03-28 01:02:04 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-03-28 01:02:04 -0400 |
commit | 1ebf78d4bba1b50415677a25ea1e1a3a058a2b73 (patch) | |
tree | 149c40caf68b43c9e05d0b7a248ee9765055e4b7 | |
parent | 3b641c6acfc6d215bcb5b8ccc13395a9093e1bcf (diff) |
kernel: tlsf: Include proper headers
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sys/vm/tlsf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/vm/tlsf.c b/sys/vm/tlsf.c index d4a6ddf..8e425a1 100644 --- a/sys/vm/tlsf.c +++ b/sys/vm/tlsf.c @@ -1,7 +1,8 @@ #include <sys/syslog.h>
+#define _HAVE_PTRDIFF_T
#include <sys/types.h>
+#include <sys/limits.h>
#include <assert.h>
-#include <limits.h>
#include <string.h>
#include <vm/tlsf.h>
|