aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-09-27 10:26:59 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-09-27 10:26:59 +0000
commit7c654ae9df92bc8dd4fcbf7aba47e5f49ea2dd54 (patch)
tree8cb797b355caa7ff84a240ffdfefb90ed2a53535 /include
parent892536f019f72925513aa4d1decfe530bb65bbdc (diff)
downloadbusybox-7c654ae9df92bc8dd4fcbf7aba47e5f49ea2dd54.tar.gz
remove stray '/*' within comment
Diffstat (limited to 'include')
-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);
char *xstrndup(const char *s, int n);
char *safe_strncpy(char *dst, const char *src, size_t size);
/* Guaranteed to NOT be a macro (smallest code). Saves nearly 2k on uclibc.
-/* But potentially slow, don't use in one-billion-times loops */
+ * But potentially slow, don't use in one-billion-times loops */
int bb_putchar(int ch);
char *xasprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
// gcc-4.1.1 still isn't good enough at optimizing it