- don't free user-supplied string (via -e)
[oweals/busybox.git] / libbb / bb_basename.c
index e19156d5c05b95d76df3681cb83b3660d2990ec6..bab4166d65534b01641c2e4d8fab485ed6f59067 100644 (file)
@@ -2,14 +2,14 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
 
 #include "libbb.h"
 
-const char *bb_basename(const char *name)
+const char* FAST_FUNC bb_basename(const char *name)
 {
        const char *cp = strrchr(name, '/');
        if (cp)