aboutsummaryrefslogtreecommitdiff
path: root/module/msys_rom
diff options
context:
space:
mode:
authorChris Kay <chris.kay@arm.com>2018-06-14 11:17:53 +0100
committerronald-cron-arm <39518861+ronald-cron-arm@users.noreply.github.com>2018-09-17 11:30:58 +0100
commite730d9b60dae0813d62dd07f2d9b248e4ba68ef3 (patch)
tree8458dc9e242646001dfebe6c7d5971d04191fbd2 /module/msys_rom
parent316c4de56e10f1ce4c422ebb9c4e75c9f75ef5c8 (diff)
misc: Implement alignof, alignas, noreturn and static_assert manually
The headers these constructs belong in were introduced with C11 standard library, but don't appear to be supported by the Arm Compiler 6's. We work around this by implementing them ourselves. Change-Id: I601701c0a8e2b5df02e7c2c95c5b0667aac6cff4 Signed-off-by: Chris Kay <chris.kay@arm.com>
Diffstat (limited to 'module/msys_rom')
-rw-r--r--module/msys_rom/src/mod_msys_rom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/msys_rom/src/mod_msys_rom.c b/module/msys_rom/src/mod_msys_rom.c
index 8f240bf7..76a21334 100644
--- a/module/msys_rom/src/mod_msys_rom.c
+++ b/module/msys_rom/src/mod_msys_rom.c
@@ -11,13 +11,13 @@
#include <stdbool.h>
#include <stdint.h>
-#include <stdnoreturn.h>
#include <string.h>
#include <fwk_assert.h>
#include <fwk_errno.h>
#include <fwk_interrupt.h>
#include <fwk_module.h>
#include <fwk_module_idx.h>
+#include <fwk_noreturn.h>
#include <fwk_notification.h>
#include <fwk_thread.h>
#include <mod_bootloader.h>