[kernel] Fix build breakage

Three issues that caused build breaks when regenerating the build
directory after the previous commits:

- system.def was including endpoint.def
- syscalls/vm_area.cpp was including j6/signals.h
- util/util.h was missing an include of stddef.h
This commit is contained in:
Justin C. Miller
2022-02-22 00:12:07 -08:00
parent 69a3b6dad7
commit 63265728d4
3 changed files with 1 additions and 4 deletions

View File

@@ -2,6 +2,7 @@
/// \file util.h
/// Utility functions used in other util code
#include <stddef.h>
#include <stdint.h>
namespace util {