mirror of
https://github.com/OpenAMP/libmetal.git
synced 2026-02-05 19:26:31 +08:00
- start by "/**", - fix file relative path, - fix typos, Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
24 lines
448 B
C
24 lines
448 B
C
/*
|
|
* Copyright (c) 2020 STMicroelectronnics. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/**
|
|
* @file errno.h
|
|
* @brief Error specific primitives for libmetal.
|
|
*/
|
|
|
|
#ifndef __METAL_ERRNO__H__
|
|
#define __METAL_ERRNO__H__
|
|
|
|
#if defined(__ICCARM__)
|
|
# include <metal/compiler/iar/errno.h>
|
|
#elif defined(__ARMCC_VERSION)
|
|
# include <metal/compiler/armcc/errno.h>
|
|
#else
|
|
# include <errno.h>
|
|
#endif
|
|
|
|
#endif /* __METAL_ERRNO__H__ */
|