diff options
| -rw-r--r-- | apps/plugin.c | 1 | ||||
| -rw-r--r-- | apps/plugin.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 69e84c1..f595ed7 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -263,6 +263,7 @@ static const struct plugin_api rockbox_api = { the API gets incompatible */ strchr, + strcat, }; int plugin_load(const char* plugin, void* parameter) diff --git a/apps/plugin.h b/apps/plugin.h index cb9bdb7..2ae325a 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -299,6 +299,8 @@ struct plugin_api { the API gets incompatible */ char (*strchr)(const char *s, int c); + char (*strcat)(char *s1, const char *s2); + }; /* defined by the plugin loader (plugin.c) */ |