lib: heap: rename with files and use _

be consistent with other files in the same folder.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2023-11-17 19:33:17 -05:00
parent 2e24e9da9e
commit 00680bd23a
4 changed files with 3 additions and 3 deletions

View file

@ -2,12 +2,12 @@
zephyr_sources(
heap.c
heap-info.c
heap_info.c
multi_heap.c
)
zephyr_sources_ifdef(CONFIG_SYS_HEAP_VALIDATE heap-validate.c)
zephyr_sources_ifdef(CONFIG_SYS_HEAP_STRESS heap-stress.c)
zephyr_sources_ifdef(CONFIG_SYS_HEAP_VALIDATE heap_validate.c)
zephyr_sources_ifdef(CONFIG_SYS_HEAP_STRESS heap_stress.c)
zephyr_sources_ifdef(CONFIG_SHARED_MULTI_HEAP shared_multi_heap.c)
zephyr_sources_ifdef(CONFIG_HEAP_LISTENER heap_listener.c)