aboutsummaryrefslogtreecommitdiff
path: root/test/t1.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/t1.c')
-rw-r--r--test/t1.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/t1.c b/test/t1.c
index 35a5312..6493dec 100644
--- a/test/t1.c
+++ b/test/t1.c
@@ -1,4 +1,4 @@
-int glob;
+int glob = 1;
int fibo(int n) {
if (n <= 0) return 0;
@@ -17,6 +17,7 @@ int fibo(int n) {
void main(int argc, int **argv) {
int a = 1;
int b = 2 + a * 3;
- fibo(5);
+ glob = glob + 1;
+ fibo(glob);
// holo_dec(a);
}