arch: xtensa: core: include: Update header to use guard macros

Remove usage of pragma once for consistency across all headers.

Signed-off-by: Benjamin Björnsson <benjamin.bjornsson@gmail.com>
This commit is contained in:
Benjamin Björnsson 2022-07-20 14:50:53 +02:00 committed by Maureen Helm
parent 2399145406
commit 386487acd8

View file

@ -4,7 +4,8 @@
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#ifndef ZEPHYR_ARCH_XTENSA_CORE_INCLUDE_XTENSA_BACKTRACE_H_
#define ZEPHYR_ARCH_XTENSA_CORE_INCLUDE_XTENSA_BACKTRACE_H_
#ifdef __cplusplus
extern "C" {
@ -94,3 +95,5 @@ int z_xtensa_backtrace_print(int depth, int *interrupted_stack);
#ifdef __cplusplus
}
#endif
#endif /* ZEPHYR_ARCH_XTENSA_CORE_INCLUDE_XTENSA_BACKTRACE_H_ */