aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-06-22 02:58:45 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-06-22 02:58:45 +0000
commitf4a999e9f2af0a3171d2747eb1e6fecddf5bbce3 (patch)
tree6879e1a896cc1a99300366ff9fcac6ed8a3ce7e1 /libbb
parent092a3ecf33f431fb5267390ea0b6b5c17514fb5b (diff)
downloadbusybox-w32-f4a999e9f2af0a3171d2747eb1e6fecddf5bbce3.tar.gz
busybox-w32-f4a999e9f2af0a3171d2747eb1e6fecddf5bbce3.tar.bz2
busybox-w32-f4a999e9f2af0a3171d2747eb1e6fecddf5bbce3.zip
Add in a missing header file
git-svn-id: svn://busybox.net/trunk/busybox@2881 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r--libbb/strdup_substr.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libbb/strdup_substr.c b/libbb/strdup_substr.c
index 4542d5fbe..85030b11a 100644
--- a/libbb/strdup_substr.c
+++ b/libbb/strdup_substr.c
@@ -22,6 +22,8 @@
22/* Return a substring of STR, starting at index START and ending at END, 22/* Return a substring of STR, starting at index START and ending at END,
23 * allocated on the heap. */ 23 * allocated on the heap. */
24 24
25#include "libbb.h"
26
25char *strdup_substr(const char *str, int start, int end) 27char *strdup_substr(const char *str, int start, int end)
26{ 28{
27 int size = end - start + 1; 29 int size = end - start + 1;