diff options
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/plugins/calculator.c | 3 | ||||
| -rw-r--r-- | apps/plugins/lua/rockconf.h | 7 |
2 files changed, 8 insertions, 2 deletions
diff --git a/apps/plugins/calculator.c b/apps/plugins/calculator.c index c19d6bb..95b35e9 100644 --- a/apps/plugins/calculator.c +++ b/apps/plugins/calculator.c @@ -80,6 +80,9 @@ F3: equal to "=" PLUGIN_HEADER + +#define M_TWOPI (M_PI * 2.0) + #define BUTTON_ROWS 5 #define BUTTON_COLS 5 diff --git a/apps/plugins/lua/rockconf.h b/apps/plugins/lua/rockconf.h index 92c0f8c..7fbc89f 100644 --- a/apps/plugins/lua/rockconf.h +++ b/apps/plugins/lua/rockconf.h @@ -51,8 +51,11 @@ struct tm *gmtime(const time_t *timep); long strtol(const char *nptr, char **endptr, int base); unsigned long strtoul(const char *str, char **endptr, int base); size_t strftime(char* dst, size_t max, const char* format, const struct tm* tm); -long floor(long x); -long pow(long x, long y); +long lfloor(long x); +long lpow(long x, long y); + +#define floor lfloor +#define pow lpow /* Simple substitutions */ #define realloc dlrealloc |