aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/general/andd.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/mppa/general/andd.c')
-rw-r--r--test/mppa/general/andd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/mppa/general/andd.c b/test/mppa/general/andd.c
index 57c23585..4f503764 100644
--- a/test/mppa/general/andd.c
+++ b/test/mppa/general/andd.c
@@ -1,5 +1,5 @@
-int main(void){
- long long a = 5;
- long long b = -3;
+#include "framework.h"
+
+BEGIN_TEST(long long)
return a&b;
-}
+END_TEST()