summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugin.c1
-rw-r--r--apps/plugin.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 69e84c1809..f595ed75da 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -263,6 +263,7 @@ static const struct plugin_api rockbox_api = {
263 the API gets incompatible */ 263 the API gets incompatible */
264 264
265 strchr, 265 strchr,
266 strcat,
266}; 267};
267 268
268int plugin_load(const char* plugin, void* parameter) 269int plugin_load(const char* plugin, void* parameter)
diff --git a/apps/plugin.h b/apps/plugin.h
index cb9bdb7f9d..2ae325a6d8 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -299,6 +299,8 @@ struct plugin_api {
299 the API gets incompatible */ 299 the API gets incompatible */
300 300
301 char (*strchr)(const char *s, int c); 301 char (*strchr)(const char *s, int c);
302 char (*strcat)(char *s1, const char *s2);
303
302}; 304};
303 305
304/* defined by the plugin loader (plugin.c) */ 306/* defined by the plugin loader (plugin.c) */