summary refs log tree commit diff
path: root/proto/ctests/eucl.c
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-02-11 10:33:44 -0500
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-02-11 10:33:44 -0500
commit96251837db7c698a76d997f1449f0cd47885f203 (patch)
tree3a0019a8c9e6115bc4205c00baa86e7814baaa0f /proto/ctests/eucl.c
parent86dfca58460639f9a969aa312f0adf17e79be1f0 (diff)
downloadroux-96251837db7c698a76d997f1449f0cd47885f203.tar.gz
leave the prototype to git history
Diffstat (limited to 'proto/ctests/eucl.c')
-rw-r--r--proto/ctests/eucl.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/proto/ctests/eucl.c b/proto/ctests/eucl.c
deleted file mode 100644
index fd2e9c9..0000000
--- a/proto/ctests/eucl.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <stdio.h>
-
-int main()
-{
-	int a = 123456;
-	int b = 32223;
-	int t;
-
-	do {
-		t = a % b;
-		a = b;
-		b = t;
-	} while (b);
-
-	printf("%d\n", a);
-	return 0;
-}