summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c2
-rw-r--r--apps/plugin.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 93779d7a6c..4bed707c11 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -684,7 +684,7 @@ static const struct plugin_api rockbox_api = {
684 684
685 /* misc */ 685 /* misc */
686#if (CONFIG_PLATFORM & PLATFORM_NATIVE) 686#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
687 &errno, 687 __errno,
688#endif 688#endif
689 srand, 689 srand,
690 rand, 690 rand,
diff --git a/apps/plugin.h b/apps/plugin.h
index 6a15f86919..fd4e468b91 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -160,12 +160,12 @@ void* plugin_get_buffer(size_t *buffer_size);
160#define PLUGIN_MAGIC 0x526F634B /* RocK */ 160#define PLUGIN_MAGIC 0x526F634B /* RocK */
161 161
162/* increase this every time the api struct changes */ 162/* increase this every time the api struct changes */
163#define PLUGIN_API_VERSION 229 163#define PLUGIN_API_VERSION 230
164 164
165/* update this to latest version if a change to the api struct breaks 165/* update this to latest version if a change to the api struct breaks
166 backwards compatibility (and please take the opportunity to sort in any 166 backwards compatibility (and please take the opportunity to sort in any
167 new function which are "waiting" at the end of the function table) */ 167 new function which are "waiting" at the end of the function table) */
168#define PLUGIN_MIN_API_VERSION 228 168#define PLUGIN_MIN_API_VERSION 230
169 169
170/* plugin return codes */ 170/* plugin return codes */
171/* internal returns start at 0x100 to make exit(1..255) work */ 171/* internal returns start at 0x100 to make exit(1..255) work */
@@ -829,7 +829,7 @@ struct plugin_api {
829 829
830 /* misc */ 830 /* misc */
831#if (CONFIG_PLATFORM & PLATFORM_NATIVE) 831#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
832 int* __errno; 832 int * (*__errno)(void);
833#endif 833#endif
834 void (*srand)(unsigned int seed); 834 void (*srand)(unsigned int seed);
835 int (*rand)(void); 835 int (*rand)(void);