commit | 5c496a3fca115bf33314b89312ab1a5d849e94d4 | [log] [tgz] |
---|---|---|
author | Andrew Scull <ascull@google.com> | Thu Apr 04 11:57:33 2019 +0100 |
committer | Andrew Scull <ascull@google.com> | Thu Apr 04 11:59:02 2019 +0100 |
tree | f85c954f87d44f134ae5e35b9f2bc5b3565603e1 | |
parent | a59f9bc500bdc8135b6d2dc9f4ef7359a9ecb47b [diff] [blame] |
Don't depend on muslc for embedded artifacts. These images are freestanding so should only use the standard headers made available by the compiler in freestansing mode. Change-Id: Id96db053d2c8571a95ece319578171c145894b50
diff --git a/src/mm.c b/src/mm.c index 67a1332..813e1b9 100644 --- a/src/mm.c +++ b/src/mm.c
@@ -16,10 +16,10 @@ #include "hf/mm.h" -#include <assert.h> #include <stdatomic.h> #include <stdint.h> +#include "hf/assert.h" #include "hf/dlog.h" #include "hf/layout.h"