index
:
cproc.git
defer
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
struct-passing-call.c
blob: 2ad746e65a6060d7f9edbe1f7110b1ab99724d22 (
plain
)
1
2
3
4
5
6
7
8
struct s { int x; } s; void f(struct s); void g(void) { f(s); }