aboutsummaryrefslogtreecommitdiffstats
path: root/run.c
diff options
context:
space:
mode:
authorJohn M. Calandrino <jmc@jupiter-cs.cs.unc.edu>2007-05-09 22:57:01 -0400
committerJohn M. Calandrino <jmc@jupiter-cs.cs.unc.edu>2007-05-09 22:57:01 -0400
commit614f25b7f839f71afefee29c5df4b8352ef25c93 (patch)
tree3441b9972f97dfa2e8fb1660cf49a06b0e472d27 /run.c
parente8ff253be117b3f3c8761a73a3a0a250baa85da4 (diff)
Changed run program so that it ends.
Diffstat (limited to 'run.c')
-rw-r--r--run.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/run.c b/run.c
index b823efb..3719d6f 100644
--- a/run.c
+++ b/run.c
@@ -2,6 +2,7 @@
2 2
3int main(int argc, char** argv) 3int main(int argc, char** argv)
4{ 4{
5 while (1); 5 int i;
6 for (i = 0; i < 500000000; i++);
6 return 0; 7 return 0;
7} 8}