summary refs log tree commit diff
path: root/proto/ctests/pspill.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/pspill.c
parent86dfca58460639f9a969aa312f0adf17e79be1f0 (diff)
downloadroux-96251837db7c698a76d997f1449f0cd47885f203.tar.gz
leave the prototype to git history
Diffstat (limited to 'proto/ctests/pspill.c')
-rw-r--r--proto/ctests/pspill.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/proto/ctests/pspill.c b/proto/ctests/pspill.c
deleted file mode 100644
index d3dfba8..0000000
--- a/proto/ctests/pspill.c
+++ /dev/null
@@ -1,20 +0,0 @@
-long f() {
-	long l00, l01, l02, l03, l04, l05, l06, l07, l08, l09, l10, l11, l12, l13;
-
-	l00 = 42;
-	l01 = l00 + l00;
-	l02 = l00 + l01;
-	l03 = l00 + l02;
-	l04 = l00 + l03;
-	l05 = l00 + l04;
-	l06 = l00 + l05;
-	l07 = l06 + l06;
-	l08 = l05 + l07;
-	l09 = l04 + l08;
-	l10 = l03 + l09;
-	l11 = l02 + l10;
-	l12 = l01 + l11;
-	l13 = l00 + l12;
-
-	return l13;
-}