summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2014-04-02 21:03:30 -0400
committerMichael Sevakis <jethead71@rockbox.org>2014-04-02 21:07:30 -0400
commitf9d60e14c9dd020ca892e0e4328a5b48274aedf2 (patch)
tree680b09a9270bf1b05f6dce1e6fe5fe7350f770ae
parent36615815bf92ec0f6d4ed067689bb72f695e3bf9 (diff)
downloadrockbox-f9d60e14c9dd020ca892e0e4328a5b48274aedf2.tar.gz
rockbox-f9d60e14c9dd020ca892e0e4328a5b48274aedf2.zip
Apparently some builds still need string.h in buffering.c
Change-Id: I99b90ab7e5b7d074b1d2d1de72267f9f2eea975b
-rw-r--r--apps/buffering.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/buffering.c b/apps/buffering.c
index abf1e4b821..d3f2ed27d8 100644
--- a/apps/buffering.c
+++ b/apps/buffering.c
@@ -19,6 +19,7 @@
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21#include "config.h" 21#include "config.h"
22#include <string.h>
22#include "system.h" 23#include "system.h"
23#include "storage.h" 24#include "storage.h"
24#include "thread.h" 25#include "thread.h"