aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index c9b3ffaa0..1e3df0930 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -605,6 +605,8 @@ char *strncpy_IFNAMSIZ(char *dst, const char *src) FAST_FUNC;
605/* Guaranteed to NOT be a macro (smallest code). Saves nearly 2k on uclibc. 605/* Guaranteed to NOT be a macro (smallest code). Saves nearly 2k on uclibc.
606 * But potentially slow, don't use in one-billion-times loops */ 606 * But potentially slow, don't use in one-billion-times loops */
607int bb_putchar(int ch) FAST_FUNC; 607int bb_putchar(int ch) FAST_FUNC;
608/* Note: does not use stdio, writes to fd 2 directly */
609int bb_putchar_stderr(char ch) FAST_FUNC;
608char *xasprintf(const char *format, ...) __attribute__ ((format(printf, 1, 2))) FAST_FUNC RETURNS_MALLOC; 610char *xasprintf(const char *format, ...) __attribute__ ((format(printf, 1, 2))) FAST_FUNC RETURNS_MALLOC;
609// gcc-4.1.1 still isn't good enough at optimizing it 611// gcc-4.1.1 still isn't good enough at optimizing it
610// (+200 bytes compared to macro) 612// (+200 bytes compared to macro)