1 /* Test that the memmove TCC is emitting for the struct copy
2 and hence implicitely declares can be declared properly also
4 struct S
{ int a
,b
,c
,d
, e
[1024];};
5 int foo (struct S
*a
, struct S
*b
)
11 void *memmove(void*,const void*,__SIZE_TYPE__
);
12 void foo2 (struct S
*a
, struct S
*b
)
14 memmove(a
, b
, sizeof *a
);