libbb: move nuke_str() from passwd into libbb
[oweals/busybox.git] / libbb / fclose_nonstdin.c
index 768ee946d7a0871de897b6c881160c6a6fe972c3..5ce9d5b486a9244b6c128a0acf122b87fa7d8b5f 100644 (file)
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 2003  Manuel Novoa III  <mjn3@codepoet.org>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
 
 /* A number of standard utilities can accept multiple command line args
@@ -14,7 +14,7 @@
 
 #include "libbb.h"
 
-int fclose_if_not_stdin(FILE *f)
+int FAST_FUNC fclose_if_not_stdin(FILE *f)
 {
        /* Some more paranoid applets want ferror() check too */
        int r = ferror(f); /* NB: does NOT set errno! */