summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/calculator.c1
-rw-r--r--apps/plugins/chessbox/gnuchess.c2
-rw-r--r--apps/plugins/invadrox.c5
-rw-r--r--apps/plugins/lib/buflib.c7
-rw-r--r--apps/plugins/spacerocks.c2
5 files changed, 1 insertions, 16 deletions
diff --git a/apps/plugins/calculator.c b/apps/plugins/calculator.c
index 079a6e500c..3d0105e33d 100644
--- a/apps/plugins/calculator.c
+++ b/apps/plugins/calculator.c
@@ -102,7 +102,6 @@ PLUGIN_HEADER
102#define X_5_POS (X_4_POS + REC_WIDTH) /* x5 = 110, column 111 left blank */ 102#define X_5_POS (X_4_POS + REC_WIDTH) /* x5 = 110, column 111 left blank */
103 103
104#define SIGN(x) ((x)<0?-1:1) 104#define SIGN(x) ((x)<0?-1:1)
105#define ABS(x) ((x)<0?-(x):(x))
106 105
107/* variable button definitions */ 106/* variable button definitions */
108#if CONFIG_KEYPAD == RECORDER_PAD 107#if CONFIG_KEYPAD == RECORDER_PAD
diff --git a/apps/plugins/chessbox/gnuchess.c b/apps/plugins/chessbox/gnuchess.c
index b8fef724fc..5c30c6a6df 100644
--- a/apps/plugins/chessbox/gnuchess.c
+++ b/apps/plugins/chessbox/gnuchess.c
@@ -60,7 +60,7 @@
60#define maxdepth 30 60#define maxdepth 30
61#define true 1 61#define true 1
62#define false 0 62#define false 0
63#define absv(x) ((x) < 0 ? -(x) : (x)) 63#define absv(x) (ABS(x))
64#define taxicab(a,b) (abs(column[a]-column[b]) + abs(row[a]-row[b])) 64#define taxicab(a,b) (abs(column[a]-column[b]) + abs(row[a]-row[b]))
65 65
66/* ---- Chess datatypes and variables ---- */ 66/* ---- Chess datatypes and variables ---- */
diff --git a/apps/plugins/invadrox.c b/apps/plugins/invadrox.c
index d07bf2878b..d424f1f4cb 100644
--- a/apps/plugins/invadrox.c
+++ b/apps/plugins/invadrox.c
@@ -167,11 +167,6 @@ PLUGIN_HEADER
167#define UNUSED __attribute__ ((unused)) 167#define UNUSED __attribute__ ((unused))
168#endif 168#endif
169 169
170#ifndef ABS
171#define ABS(x) (((x) < 0) ? (-(x)) : (x))
172#endif
173
174
175/* Defines common to all models */ 170/* Defines common to all models */
176#define UFO_Y (SCORENUM_Y + FONT_HEIGHT + ALIEN_HEIGHT) 171#define UFO_Y (SCORENUM_Y + FONT_HEIGHT + ALIEN_HEIGHT)
177#define PLAYFIELD_Y (LCD_HEIGHT - SHIP_HEIGHT - 2) 172#define PLAYFIELD_Y (LCD_HEIGHT - SHIP_HEIGHT - 2)
diff --git a/apps/plugins/lib/buflib.c b/apps/plugins/lib/buflib.c
index ddfc82c521..5d03ca4bb9 100644
--- a/apps/plugins/lib/buflib.c
+++ b/apps/plugins/lib/buflib.c
@@ -40,13 +40,6 @@
40 * case that use a predefined context. 40 * case that use a predefined context.
41 */ 41 */
42 42
43#define ABS(x) \
44({ \
45 typeof(x) xtmp_abs_ = x; \
46 xtmp_abs_ = xtmp_abs_ < 0 ? -xtmp_abs_ : xtmp_abs_; \
47 xtmp_abs_; \
48})
49
50/* Initialize buffer manager */ 43/* Initialize buffer manager */
51void 44void
52buflib_init(struct buflib_context *ctx, void *buf, size_t size) 45buflib_init(struct buflib_context *ctx, void *buf, size_t size)
diff --git a/apps/plugins/spacerocks.c b/apps/plugins/spacerocks.c
index 7ceec16372..32d48862ae 100644
--- a/apps/plugins/spacerocks.c
+++ b/apps/plugins/spacerocks.c
@@ -246,8 +246,6 @@ PLUGIN_HEADER
246#endif 246#endif
247#endif 247#endif
248 248
249#define ABS(x) ((x)>0?(x):-(x))
250
251#define RES MAX(LCD_WIDTH, LCD_HEIGHT) 249#define RES MAX(LCD_WIDTH, LCD_HEIGHT)
252#define LARGE_LCD RES >= 200 250#define LARGE_LCD RES >= 200
253#define ENEMY_MISSILE_SURVIVAL_LENGTH RES/2 251#define ENEMY_MISSILE_SURVIVAL_LENGTH RES/2