This website requires JavaScript.
Explore
Help
Register
Sign In
Virtualization
/
meson
mirror of
https://gitlab.com/qemu-project/meson.git
Watch
1
Star
0
Fork
You've already forked meson
0
Code
Issues
Projects
Releases
Wiki
Activity
543e9ca0cf
meson
/
test cases
/
common
/
102 extract same name
/
main.c
7 lines
100 B
C
Raw
Normal View
History
Unescape
Escape
Use strict function prototypes
2019-11-19 04:21:37 +08:00
int
func1
(
void
)
;
int
func2
(
void
)
;
add test for extracting two objects with the same source file name
2016-03-25 05:41:34 +08:00
Make all C main functions without arguments have "void" in arg list.
2019-11-17 22:09:30 +08:00
int
main
(
void
)
{
add test for extracting two objects with the same source file name
2016-03-25 05:41:34 +08:00
return
!
(
func1
(
)
=
=
23
&
&
func2
(
)
=
=
42
)
;
}