repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
tests
/
bug-223113.c
blob
f88e326a7bfb60f6ce77004284aae216027c6c9a
1
/* bug-223113.c
2
PENDING
3
*/
4
#include <testfwk.h>
5
6
int
putch
(
int
Ch
)
7
{
8
return
(
Ch
);
9
}
10
11
int
puts
(
const char
*
Str
)
12
{
13
const char
*
Ptr
;
14
15
for
(
Ptr
=
Str
; *
Ptr
!=
'\0'
;
Ptr
++ ) {
16
putch
( *
Ptr
);
17
}
18
19
return
( (
Ptr
-
Str
) );
20
}
21
22
void
__main
(
void
)
23
{
24
puts
(
"hello world
\n
"
);
25
}
26
27
void
testBug
(
void
)
28
{
29
}