zephyr/lib/libc/armstdc/src/errno.c
Gerard Marull-Paretas 28a515982c lib: libc: errno: remove non-existing c_std_lib doxygen group
Some groups were being added to a non-existing group: c_std_lib

Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
2024-07-18 09:23:33 -04:00

27 lines
764 B
C

/*
* Copyright (c) 2021 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @brief System error numbers
* Error codes returned by functions.
* Includes a list of those defined by IEEE Std 1003.1-2017.
*
* This file is supposed to be used together with ARMClang and
* #define _AEABI_PORTABILITY_LEVEL 1
* or
* -D_AEABI_PORTABILITY_LEVEL=1
*
* For details, please refer to the document:
* 'C Library ABI for the Arm® Architecture, 2021Q1'
*
* @defgroup system_errno Error numbers
* @{
*/
const int __aeabi_EDOM = 33; /**< Argument too large */
const int __aeabi_ERANGE = 34; /**< Result too large */
const int __aeabi_EILSEQ = 138; /**< Illegal byte sequence */