From e9e80fc389365e24d4300d7d5390c7d833a96c50 Mon Sep 17 00:00:00 2001 From: aarne Date: Wed, 25 Jun 2008 16:54:35 +0000 Subject: changed names of resource-1.3; added a note on homepage on release --- examples/gfcc/compiler/fibonacci.c | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 examples/gfcc/compiler/fibonacci.c (limited to 'examples/gfcc/compiler/fibonacci.c') diff --git a/examples/gfcc/compiler/fibonacci.c b/examples/gfcc/compiler/fibonacci.c deleted file mode 100644 index 80e8a0d5c..000000000 --- a/examples/gfcc/compiler/fibonacci.c +++ /dev/null @@ -1,18 +0,0 @@ -int mx () { - return 5000000 ; -} ; - -int main () { - int lo ; int hi ; - lo = 1 ; - hi = lo ; - printf("%d",lo) ; - { - while (hi < mx()) { - printf("%d",hi) ; - hi = lo + hi ; - lo = hi - lo ; - } - } - return ; -} ; -- cgit v1.2.3