summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/libbb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 2f5aa6077..a6709c95d 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -395,7 +395,7 @@ char *xstrdup(const char *s);
395char *xstrndup(const char *s, int n); 395char *xstrndup(const char *s, int n);
396char *safe_strncpy(char *dst, const char *src, size_t size); 396char *safe_strncpy(char *dst, const char *src, size_t size);
397/* Guaranteed to NOT be a macro (smallest code). Saves nearly 2k on uclibc. 397/* Guaranteed to NOT be a macro (smallest code). Saves nearly 2k on uclibc.
398/* But potentially slow, don't use in one-billion-times loops */ 398 * But potentially slow, don't use in one-billion-times loops */
399int bb_putchar(int ch); 399int bb_putchar(int ch);
400char *xasprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2))); 400char *xasprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
401// gcc-4.1.1 still isn't good enough at optimizing it 401// gcc-4.1.1 still isn't good enough at optimizing it