summaryrefslogtreecommitdiffstatshomepage
path: root/shared/libc
diff options
context:
space:
mode:
authorAlessandro Gatti <a.gatti@frob.it>2025-01-15 16:25:55 +0100
committerDamien George <damien@micropython.org>2025-05-13 10:36:47 +1000
commitf47e214cdcf11c2067936cb4b4e4f9deab73f6fc (patch)
tree952d3ba600015817cd445f875c3072437951528d /shared/libc
parent69993daa5c2eae6055f0b3b2330e95e78d6e3738 (diff)
downloadmicropython-f47e214cdcf11c2067936cb4b4e4f9deab73f6fc.tar.gz
micropython-f47e214cdcf11c2067936cb4b4e4f9deab73f6fc.zip
all: Rename the "NORETURN" macro to "MP_NORETURN".
This commit renames the NORETURN macro, indicating to the compiler that a function does not return, into MP_NORETURN to maintain the same naming convention of other similar macros. To maintain compaitiblity with existing code NORETURN is aliased to MP_NORETURN, but it is also deprecated for MicroPython v2. This changeset was created using a similar process to decf8e6a8bb940d5829ca3296790631fcece7b21 ("all: Remove the "STATIC" macro and just use "static" instead."), with no documentation or python scripts to change to reflect the new macro name. Signed-off-by: Alessandro Gatti <a.gatti@frob.it>
Diffstat (limited to 'shared/libc')
-rw-r--r--shared/libc/abort_.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/libc/abort_.c b/shared/libc/abort_.c
index 3051eae81e..54eab67d3f 100644
--- a/shared/libc/abort_.c
+++ b/shared/libc/abort_.c
@@ -1,7 +1,7 @@
#include <py/runtime.h>
-NORETURN void abort_(void);
+MP_NORETURN void abort_(void);
-NORETURN void abort_(void) {
+MP_NORETURN void abort_(void) {
mp_raise_msg(&mp_type_RuntimeError, MP_ERROR_TEXT("abort() called"));
}