Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-08-25 00:35:45 +0400
committerMatt Kraai <kraai@debian.org>2001-08-25 00:35:45 +0400
commit80f6d55836963f4e85c297f2901161d0ff69b4cb (patch)
treed75333cf5a2360ef3f9fc16bf3099ac2461b45f3 /libbb
parentac20ce1924a0eb563acfda6533a80701cd611bfa (diff)
Eliminate improper consts and allow standard version to override.
Diffstat (limited to 'libbb')
-rw-r--r--libbb/dirname.c8
-rw-r--r--libbb/libbb.h2
2 files changed, 7 insertions, 3 deletions
diff --git a/libbb/dirname.c b/libbb/dirname.c
index 87db1f24f..df9a49daa 100644
--- a/libbb/dirname.c
+++ b/libbb/dirname.c
@@ -22,12 +22,14 @@
#include <string.h>
#include "libbb.h"
+#if defined __UCLIBC__ || __GNU_LIBRARY___ < 5
+
/* Return a string containing the path name of the parent
* directory of PATH. */
-char *dirname(const char *path)
+char *dirname(char *path)
{
- const char *s;
+ char *s;
/* Go to the end of the string. */
s = path + strlen(path) - 1;
@@ -49,3 +51,5 @@ char *dirname(const char *path)
s[1] = '\0';
return path;
}
+
+#endif
diff --git a/libbb/libbb.h b/libbb/libbb.h
index a7e38325b..30f0bb9a7 100644
--- a/libbb/libbb.h
+++ b/libbb/libbb.h
@@ -259,7 +259,7 @@ extern FILE *gz_open(FILE *compressed_file, int *pid);
extern struct hostent *xgethostbyname(const char *name);
extern int create_icmp_socket(void);
-char *dirname (const char *path);
+char *dirname (char *path);
int make_directory (char *path, long mode, int flags);