progress meter: display >999 hours ETA correctly
[oweals/busybox.git] / libbb / wfopen_input.c
index 46ff7a6de160a37b5416c89ca559db1fcd39db6b..d8b1c4a36d728570b2516acbb8e23343e8e8829a 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 applets need to open a file for reading, where the filename
@@ -31,7 +31,7 @@ FILE* FAST_FUNC xfopen_stdin(const char *filename)
        FILE *fp = fopen_or_warn_stdin(filename);
        if (fp)
                return fp;
-       xfunc_die();    /* We already output an error message. */
+       xfunc_die();  /* We already output an error message. */
 }
 
 int FAST_FUNC open_or_warn_stdin(const char *filename)
@@ -46,3 +46,11 @@ int FAST_FUNC open_or_warn_stdin(const char *filename)
 
        return fd;
 }
+
+int FAST_FUNC xopen_stdin(const char *filename)
+{
+       int fd = open_or_warn_stdin(filename);
+       if (fd >= 0)
+               return fd;
+       xfunc_die();  /* We already output an error message. */
+}