diff test/fact0.c @ 880:5313ed059cee

no tabs in source
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 03 Apr 2014 10:43:01 +0900
parents 0c256ea2a97e
children
line wrap: on
line diff
--- a/test/fact0.c	Thu Apr 03 10:34:02 2014 +0900
+++ b/test/fact0.c	Thu Apr 03 10:43:01 2014 +0900
@@ -13,6 +13,6 @@
 /*register*/ int i,j,n;
 {
     if (i==n)
-	return j;
+        return j;
     return fact(i+1,j*i,n);
 }