This website requires JavaScript.
Explore
Mirrors
Help
Sign In
6502
/
cc65
Watch
1
Star
0
Fork
0
You've already forked cc65
mirror of
https://github.com/cc65/cc65.git
synced
2024-12-28 22:30:12 +00:00
Code
Issues
Projects
Releases
Wiki
Activity
34d8c3ef0a
cc65
/
test
/
ref
/
bug2134.c
4 lines
57 B
C
Raw
Normal View
History
Unescape
Escape
Warn for braces around a pointer initializer.
2024-09-08 07:11:47 +00:00
int
i
=
{
0
}
;
char
*
p
=
{
0
}
;
The test needs a main() function.
2024-09-08 07:36:40 +00:00
int
main
(
)
{
return
0
;
}
Reference in New Issue
Copy Permalink