summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c3
-rw-r--r--apps/plugin.h1
2 files changed, 3 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index ab5ccf5a1b..47f2465631 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -682,8 +682,9 @@ static const struct plugin_api rockbox_api = {
682 viewportmanager_theme_undo, 682 viewportmanager_theme_undo,
683#endif 683#endif
684#if !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__) 684#if !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__)
685 &errno 685 &errno,
686#endif 686#endif
687 strlcat,
687}; 688};
688 689
689int plugin_load(const char* plugin, const void* parameter) 690int plugin_load(const char* plugin, const void* parameter)
diff --git a/apps/plugin.h b/apps/plugin.h
index c92fcef736..cf16eef94f 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -863,6 +863,7 @@ struct plugin_api {
863#if !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__) 863#if !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__)
864 int* __errno; 864 int* __errno;
865#endif 865#endif
866 size_t (*strlcat)(char *dst, const char *src, size_t length);
866}; 867};
867 868
868/* plugin header */ 869/* plugin header */