diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2014-04-02 21:03:30 -0400 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2014-04-02 21:07:30 -0400 |
| commit | f9d60e14c9dd020ca892e0e4328a5b48274aedf2 (patch) | |
| tree | 680b09a9270bf1b05f6dce1e6fe5fe7350f770ae /apps/buffering.c | |
| parent | 36615815bf92ec0f6d4ed067689bb72f695e3bf9 (diff) | |
| download | rockbox-f9d60e14c9dd020ca892e0e4328a5b48274aedf2.zip rockbox-f9d60e14c9dd020ca892e0e4328a5b48274aedf2.tar.gz rockbox-f9d60e14c9dd020ca892e0e4328a5b48274aedf2.tar.bz2 rockbox-f9d60e14c9dd020ca892e0e4328a5b48274aedf2.tar.xz | |
Apparently some builds still need string.h in buffering.c
Change-Id: I99b90ab7e5b7d074b1d2d1de72267f9f2eea975b
Diffstat (limited to 'apps/buffering.c')
| -rw-r--r-- | apps/buffering.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/buffering.c b/apps/buffering.c index abf1e4b..d3f2ed2 100644 --- a/apps/buffering.c +++ b/apps/buffering.c @@ -19,6 +19,7 @@ * ****************************************************************************/ #include "config.h" +#include <string.h> #include "system.h" #include "storage.h" #include "thread.h" |