aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/monniaux/madd/madd_run.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/monniaux/madd/madd_run.c b/test/monniaux/madd/madd_run.c
new file mode 100644
index 00000000..d4238c53
--- /dev/null
+++ b/test/monniaux/madd/madd_run.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+
+extern unsigned madd(unsigned a, unsigned b, unsigned c);
+
+int main() {
+ unsigned a = 7, b = 3, c = 4;
+ printf("res = %u\n", madd(a, b, c));
+ return 0;
+}