Add in a missing header file

1_00_stable_10817
Eric Andersen 2001-06-22 02:58:45 +00:00
parent 76ce7549ce
commit 6b03504441
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,8 @@
/* Return a substring of STR, starting at index START and ending at END,
* allocated on the heap. */
#include "libbb.h"
char *strdup_substr(const char *str, int start, int end)
{
int size = end - start + 1;