aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/fib.c
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-03-22 14:17:29 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-03-22 14:17:29 +0000
commitf12ccd62ecf08774ce599a2e15d9042500d2760a (patch)
tree12012ae296025441c3329e23a7290732cf33c36c /c_compiler/test/in/fib.c
parent190b7a0e5d45367230795ac0bdf6fc2f248ba9e1 (diff)
downloadCompiler-f12ccd62ecf08774ce599a2e15d9042500d2760a.tar.gz
Compiler-f12ccd62ecf08774ce599a2e15d9042500d2760a.zip
Adding test and break working
Diffstat (limited to 'c_compiler/test/in/fib.c')
-rw-r--r--c_compiler/test/in/fib.c2
1 files changed, 1 insertions, 1 deletions
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;