From 9e22e42210403f510d98811a11631f396bbbf4b7 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Fri, 2 Dec 2016 07:52:48 +0330 Subject: updated --- test/testFuncs2.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test') 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; } -- cgit v1.2.3