summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c2
-rw-r--r--apps/plugin.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index bd2f0bc802..e51a00ce4a 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -329,7 +329,7 @@ static const struct plugin_api rockbox_api = {
329#ifdef ROCKBOX_HAS_LOGF 329#ifdef ROCKBOX_HAS_LOGF
330 logf, 330 logf,
331#endif 331#endif
332 332 strncmp,
333}; 333};
334 334
335int plugin_load(const char* plugin, void* parameter) 335int plugin_load(const char* plugin, void* parameter)
diff --git a/apps/plugin.h b/apps/plugin.h
index 507d36d4e9..0010d6d3a0 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -399,6 +399,7 @@ struct plugin_api {
399#ifdef ROCKBOX_HAS_LOGF 399#ifdef ROCKBOX_HAS_LOGF
400 void (*logf)(const char *fmt, ...); 400 void (*logf)(const char *fmt, ...);
401#endif 401#endif
402 int (*strncmp)(const char *, const char *, size_t);
402}; 403};
403 404
404int plugin_load(const char* plugin, void* parameter); 405int plugin_load(const char* plugin, void* parameter);