diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-14 12:20:02 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-15 14:51:15 -0600 |
commit | 67cec6d2770aa14a13c89247612f16c628ebd54c (patch) | |
tree | 0a64beaa2f57f5b6e4db5e2ea84811cb05406958 /libmisc/include | |
parent | f01b89b599d40df5d6c127310b0030cd41c8dc85 (diff) |
libmisc: Remove uses of printf
Diffstat (limited to 'libmisc/include')
-rw-r--r-- | libmisc/include/libmisc/_intercept.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libmisc/include/libmisc/_intercept.h b/libmisc/include/libmisc/_intercept.h index f9b7c8c..f02244a 100644 --- a/libmisc/include/libmisc/_intercept.h +++ b/libmisc/include/libmisc/_intercept.h @@ -21,13 +21,6 @@ size_t __lm_printf(const char *format, ...); [[noreturn]] void __lm_abort(void); -/* __lm_light_printf is expected to have less stack use than regular - * __lm_printf, if possible. - */ - -[[gnu::format(printf, 1, 2)]] -size_t __lm_light_printf(const char *format, ...); - /* While newlib defines putchar() to be [[gnu::weak]], pico_stdio does * not. Plus the above about optimizations. */ |