diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 326179b97..3fffa83ed 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -592,6 +592,8 @@ char *strncpy_IFNAMSIZ(char *dst, const char *src) FAST_FUNC; | |||
592 | /* Guaranteed to NOT be a macro (smallest code). Saves nearly 2k on uclibc. | 592 | /* Guaranteed to NOT be a macro (smallest code). Saves nearly 2k on uclibc. |
593 | * But potentially slow, don't use in one-billion-times loops */ | 593 | * But potentially slow, don't use in one-billion-times loops */ |
594 | int bb_putchar(int ch) FAST_FUNC; | 594 | int bb_putchar(int ch) FAST_FUNC; |
595 | /* Note: does not use stdio, writes to fd 2 directly */ | ||
596 | int bb_putchar_stderr(char ch) FAST_FUNC; | ||
595 | char *xasprintf(const char *format, ...) __attribute__ ((format(printf, 1, 2))) FAST_FUNC RETURNS_MALLOC; | 597 | char *xasprintf(const char *format, ...) __attribute__ ((format(printf, 1, 2))) FAST_FUNC RETURNS_MALLOC; |
596 | // gcc-4.1.1 still isn't good enough at optimizing it | 598 | // gcc-4.1.1 still isn't good enough at optimizing it |
597 | // (+200 bytes compared to macro) | 599 | // (+200 bytes compared to macro) |