traceroute: fix help text to not show -6 when traceroute6 is off
[oweals/busybox.git] / libbb / printable.c
index 2420a91f0bf61c3afa0b133b8d908c4366d7b411..ae9335932afe2d70d6e5a106f1661acd94b4998d 100644 (file)
@@ -2,14 +2,14 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
 
 #include "libbb.h"
 
-void fputc_printable(int ch, FILE *file)
+void FAST_FUNC fputc_printable(int ch, FILE *file)
 {
        if ((ch & (0x80 + PRINTABLE_META)) == (0x80 + PRINTABLE_META)) {
                fputs("M-", file);