aboutsummaryrefslogtreecommitdiffstats
path: root/test/testFuncs2.c
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2016-12-02 04:22:48 +0000
committerbloodstalker <thabogre@gmail.com>2016-12-02 04:22:48 +0000
commit9e22e42210403f510d98811a11631f396bbbf4b7 (patch)
tree06475d41094dfe98420a8e74f635f6a1fee888f0 /test/testFuncs2.c
parentupdated (diff)
downloadmutator-9e22e42210403f510d98811a11631f396bbbf4b7.tar.gz
mutator-9e22e42210403f510d98811a11631f396bbbf4b7.zip
updated
Diffstat (limited to 'test/testFuncs2.c')
-rw-r--r--test/testFuncs2.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/testFuncs2.c b/test/testFuncs2.c
index fb30dd8..130dbf2 100644
--- a/test/testFuncs2.c
+++ b/test/testFuncs2.c
@@ -19,6 +19,7 @@ typedef const* INTPTR;
#define ABSOLUTE(X) (((X) >= 0) ? (X) : -(X))
#define ABSOLUTE2(X) ((X >= 0) ? X : -X)
#define ABSOLUTE3(XMACRO) (((XMACRO) <= 0) ? (XMACRO) : -(XMACRO))
+#define MINUS(X,Y) ((X) - (Y))
#define LOCOLUPO
#undef LOCOLUPO
@@ -33,6 +34,9 @@ static void test33(void)
short int a;
long int b;
+ MINUS(a, b);
+ //MINUS(a);
+
b = (int)a;
}