Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
d32f2405
Commit
d32f2405
authored
Aug 09, 2006
by
Matthias Braun
Browse files
return 0 from main function
parent
21a385ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/test/adam_putt.c
View file @
d32f2405
#include <stdio.h>
int
hallo
()
{
int
i
=
0
;
int
j
=
2
;
int
i
=
0
;
int
j
=
2
;
i
=
add
(
i
,
j
,
i
,
j
);
i
=
add
(
i
,
j
,
i
,
j
);
return
i
;
return
i
;
}
int
add
(
int
i
,
int
j
,
int
k
,
int
l
)
{
return
i
+
j
+
k
+
l
;
return
i
+
j
+
k
+
l
;
}
int
main
()
{
printf
(
"%d
\n
"
,
hallo
());
printf
(
"%d
\n
"
,
hallo
());
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment