diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2014-04-03 18:49:16 -0400 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2014-04-03 18:49:16 -0400 |
commit | 8375b691e629bfbfb2a6ea213c35fe645085d9b7 (patch) | |
tree | f282ba1ac5ba5baa45a5f0dd5c23ba059b22cf17 /apps/buffering.c | |
parent | 580104db4deb7d1aae47d8c734aab80e60f4889b (diff) |
buffering.c: Patch up some straggling strlcpy warnings
Originating from 3661581
Some build clients finding their "standard" string.h's that don't declare
strlcpy?
Change-Id: I50d19c7cecf5ae96ee1855f77d3c2e1f42620108
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 d3f2ed27d8..1826fa1b91 100644 --- a/apps/buffering.c +++ b/apps/buffering.c @@ -20,6 +20,7 @@ ****************************************************************************/ #include "config.h" #include <string.h> +#include "strlcpy.h" #include "system.h" #include "storage.h" #include "thread.h" |