lineedit: do not hang on error, but return error indicator.
[oweals/busybox.git] / libbb / printable.c
index 676758a2b8070853104c399dffd5e63c020b849d..f6ada4904ecc9b793df144624837db9addcac43d 100644 (file)
@@ -4,12 +4,12 @@
  *
  * Copyright (C) 2007 Denys Vlasenko
  *
- * Licensed under GPL version 2, see file LICENSE in this tarball for details.
+ * Licensed under GPLv2, see file LICENSE in this source tree.
  */
 
 #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);