diff options
author | Matt Kraai <kraai@debian.org> | 2001-07-05 19:00:47 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-07-05 19:00:47 +0000 |
commit | 5009f90ea24224638af6945552012ce60efb3cea (patch) | |
tree | 3a1c4ca9a5a873f39efe93d88528315c2f339090 /include | |
parent | 44edeff025d0c282fd71dade3d20e237e58ca4bc (diff) | |
download | busybox-5009f90ea24224638af6945552012ce60efb3cea.tar.gz |
Removed obsolete function, strdup_substr.
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/libbb.h b/include/libbb.h index c29955b3b..0fc704501 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -254,10 +254,6 @@ extern struct hostent *xgethostbyname(const char *name); char *dirname (const char *path); -static inline char *strdup_substr (const char *s, int start, int end) -{ - return xstrndup (s+start, end-start); -} int make_directory (char *path, mode_t mode, int flags); #define CT_AUTO 0 |