aboutsummaryrefslogtreecommitdiff
path: root/module/sds
diff options
context:
space:
mode:
authorChris Kay <chris.kay@arm.com>2018-06-27 12:05:54 +0100
committerronald-cron-arm <39518861+ronald-cron-arm@users.noreply.github.com>2018-08-23 17:51:01 +0200
commitc55b93341896d6c20a99c2a6796c0a973c4efdf2 (patch)
treefe5027ff691dd139f28ca0473dfa82755ad89b77 /module/sds
parent79275af346fafbcd4301dbbf49207b81a64e43d3 (diff)
misc: Replace `<assert.h>` includes with `<fwk_assert.h>`
This commit moves all inclusions of <assert.h> into <fwk_assert.h>, which now includes it instead. This allows us to keep all assert-related logic under one roof. Change-Id: I4ec0d950dfd9264733645bc14da952b8c1619501 Signed-off-by: Chris Kay <chris.kay@arm.com>
Diffstat (limited to 'module/sds')
-rw-r--r--module/sds/src/mod_sds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/sds/src/mod_sds.c b/module/sds/src/mod_sds.c
index 98144557..de3f1432 100644
--- a/module/sds/src/mod_sds.c
+++ b/module/sds/src/mod_sds.c
@@ -5,11 +5,11 @@
* SPDX-License-Identifier: BSD-3-Clause
*/
-#include <assert.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
+#include <fwk_assert.h>
#include <fwk_element.h>
#include <fwk_errno.h>
#include <fwk_macros.h>