You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// See comments in -v1.c file.
|
|
struct sto1 {
|
|
int x;
|
|
};
|
|
|
|
struct sto2 {
|
|
long x;
|
|
};
|
|
|
|
void fn1(struct sto1 s) {
|
|
}
|
|
|
|
void fn2(struct sto2 s) {
|
|
}
|
|
|
|
void fn3(struct sto1* s) {
|
|
}
|
|
|
|
void fn4(struct sto2* s) {
|
|
}
|