From: Eric Andersen Date: Fri, 22 Jun 2001 02:58:45 +0000 (-0000) Subject: Add in a missing header file X-Git-Tag: 0_52~78 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6b03504441079ba23318316f6147cc55fc0d0dd9;p=oweals%2Fbusybox.git Add in a missing header file --- 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 @@ /* 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;