summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c2
-rw-r--r--apps/talk.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 6892cb957f..9a7a397bea 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -67,7 +67,7 @@
67static unsigned char pluginbuf[PLUGIN_BUFFER_SIZE]; 67static unsigned char pluginbuf[PLUGIN_BUFFER_SIZE];
68#else 68#else
69extern unsigned char pluginbuf[]; 69extern unsigned char pluginbuf[];
70extern void bitswap(unsigned char *data, int length); 70#include "bitswap.h"
71#endif 71#endif
72 72
73static bool plugin_loaded = false; 73static bool plugin_loaded = false;
diff --git a/apps/talk.c b/apps/talk.c
index 941af1dfd9..c0fe599b60 100644
--- a/apps/talk.c
+++ b/apps/talk.c
@@ -32,7 +32,7 @@
32#include "lang.h" 32#include "lang.h"
33#include "talk.h" 33#include "talk.h"
34#include "id3.h" 34#include "id3.h"
35extern void bitswap(unsigned char *data, int length); /* no header for this */ 35#include "bitswap.h"
36 36
37/***************** Constants *****************/ 37/***************** Constants *****************/
38 38