rename functions to more understandable names
[oweals/busybox.git] / libbb / concat_path_file.c
index 415b6a2fb48d42d2b35b3e6dfc0b7d3234caccb4..ef0d3282dfc310530e3a7acd272e75cf80494fb9 100644 (file)
@@ -12,7 +12,6 @@
  * not addition '/' if path name already have '/'
 */
 
-#include <string.h>
 #include "libbb.h"
 
 char *concat_path_file(const char *path, const char *filename)
@@ -24,5 +23,5 @@ char *concat_path_file(const char *path, const char *filename)
        lc = last_char_is(path, '/');
        while (*filename == '/')
                filename++;
-       return bb_xasprintf("%s%s%s", path, (lc==NULL ? "/" : ""), filename);
+       return xasprintf("%s%s%s", path, (lc==NULL ? "/" : ""), filename);
 }