summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index f2f0a6de9d..0d1a9b2fa4 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -259,8 +259,8 @@ struct plugin_api {
259#endif 259#endif
260 260
261 /* misc */ 261 /* misc */
262 void (*srand)(unsigned int seed); 262 void (*srand)(unsigned long seed);
263 int (*rand)(void); 263 long (*rand)(void);
264 void (*qsort)(void *base, size_t nmemb, size_t size, 264 void (*qsort)(void *base, size_t nmemb, size_t size,
265 int(*compar)(const void *, const void *)); 265 int(*compar)(const void *, const void *));
266 int (*kbd_input)(char* buffer, int buflen); 266 int (*kbd_input)(char* buffer, int buflen);