zephyr/lib/libc/minimal/source/stdlib
Patryk Duda 7abe39c68a libc: minimal: Add 'break' to suppress fall-through error in atoi.c
Compiling using clang fails with following error:

error: unannotated fall-through between switch labels
[-Werror,-Wimplicit-fallthrough]

Actually, missing 'break' statement is not an error here because
the next label is 'default' which contains 'break' only. For the same
reason we can add it to silence the compiler.

Signed-off-by: Patryk Duda <pdk@semihalf.com>
2023-05-31 14:41:25 -04:00
..
atoi.c libc: minimal: Add 'break' to suppress fall-through error in atoi.c 2023-05-31 14:41:25 -04:00
bsearch.c
exit.c includes: prefer <zephyr/kernel.h> over <zephyr/zephyr.h> 2022-09-05 16:31:47 +02:00
qsort.c
rand.c
strtol.c libc: fix armclang compiler warnings with is*() functions 2023-04-04 13:47:34 +02:00
strtoll.c libc: minimal: strtoll: Remove typo in SPDX-License-Identifier 2023-05-11 06:04:30 -04:00
strtoul.c libc: fix armclang compiler warnings with is*() functions 2023-04-04 13:47:34 +02:00
strtoull.c libc: fix armclang compiler warnings with is*() functions 2023-04-04 13:47:34 +02:00