From f12ccd62ecf08774ce599a2e15d9042500d2760a Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Wed, 22 Mar 2017 14:17:29 +0000 Subject: Adding test and break working --- c_compiler/test/in/fib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'c_compiler/test/in/fib.c') diff --git a/c_compiler/test/in/fib.c b/c_compiler/test/in/fib.c index 17a3b41..62a9a07 100644 --- a/c_compiler/test/in/fib.c +++ b/c_compiler/test/in/fib.c @@ -1,6 +1,6 @@ int main() { - int n, first = 0, second = 1, next, c; + unsigned long int n, first = 0, second = 1, next, c; n = 10; -- cgit