zephyr/lib/libc/minimal/source
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
..
math
stdlib libc: minimal: Add 'break' to suppress fall-through error in atoi.c 2023-05-31 14:41:25 -04:00
stdout libc/minimal: Create "real" functions for putc and putchar 2023-04-25 06:18:26 -04:00
string libc: Move strnlen into common 2023-05-08 09:59:27 +02:00
time libc: share time() between minimal libc and armclang libc 2023-03-27 09:49:40 +02:00