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
Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git]
/
sdcc
/
support
/
regression
/
qct
/
0089-fptr.c
blob
e30edfa2e5a2b2b5b5a46e9493fb34baf02f4b59
1
2
struct
S
3
{
4
int
(*
fptr
)();
5
};
6
7
int
8
foo
()
9
{
10
return
0
;
11
}
12
13
int
14
main
()
15
{
16
struct
S v
;
17
18
v
.
fptr
=
foo
;
19
return
v
.
fptr
();
20
}
21