lineedit: do not hang on error, but return error indicator.
[oweals/busybox.git] / libbb / concat_path_file.c
index dd6909fc2a652cd40ca7ce9297fef59e7b02c6e2..9ed295996db365b7ab561439daf1b61745547676 100644 (file)
@@ -5,7 +5,7 @@
  * Copyright (C) many different people.
  * If you wrote this, please acknowledge your work.
  *
- * 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.
  */
 
 /* Concatenate path and filename to new allocated buffer.
@@ -16,7 +16,7 @@
 
 #include "libbb.h"
 
-char *concat_path_file(const char *path, const char *filename)
+char* FAST_FUNC concat_path_file(const char *path, const char *filename)
 {
        char *lc;