diff options
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/plugin.c | 2 | ||||
| -rw-r--r-- | apps/talk.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 6892cb9..9a7a397 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -67,7 +67,7 @@ static unsigned char pluginbuf[PLUGIN_BUFFER_SIZE]; #else extern unsigned char pluginbuf[]; -extern void bitswap(unsigned char *data, int length); +#include "bitswap.h" #endif static bool plugin_loaded = false; diff --git a/apps/talk.c b/apps/talk.c index 941af1d..c0fe599 100644 --- a/apps/talk.c +++ b/apps/talk.c @@ -32,7 +32,7 @@ #include "lang.h" #include "talk.h" #include "id3.h" -extern void bitswap(unsigned char *data, int length); /* no header for this */ +#include "bitswap.h" /***************** Constants *****************/ |