summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/wrappers.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lib/wrappers.h')
-rw-r--r--apps/plugins/lib/wrappers.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/plugins/lib/wrappers.h b/apps/plugins/lib/wrappers.h
index 385cd5d613..bb904ff946 100644
--- a/apps/plugins/lib/wrappers.h
+++ b/apps/plugins/lib/wrappers.h
@@ -27,6 +27,9 @@
27#ifndef _LIB_WRAPPERS_H_ 27#ifndef _LIB_WRAPPERS_H_
28#define _LIB_WRAPPERS_H_ 28#define _LIB_WRAPPERS_H_
29 29
30#define DEBUG_H
31#define __SPRINTF_H__
32
30#define open rb->open 33#define open rb->open
31#define close rb->close 34#define close rb->close
32#define read rb->read 35#define read rb->read
@@ -36,6 +39,16 @@
36#define cpu_boost rb->cpu_boost 39#define cpu_boost rb->cpu_boost
37#endif 40#endif
38#define yield rb->yield 41#define yield rb->yield
42#define file_exists rb->file_exists
43#define snprintf rb->snprintf
44#define strcat rb->strcat
45#define strchr rb->strchr
46#define strcmp rb->strcmp
47#define strcpy rb->strcpy
48#define strip_extension rb->strip_extension
49#define strlen rb->strlen
50#define strncpy rb->strncpy
51#define strrchr rb->strrchr
39 52
40#endif 53#endif
41 54