4,465
社区成员




int stat ( const char * restrict pathname,struct stat * restrict buf);
int foo (int* x, int* y)
...{
*x = 0;
*y = 1;
return *x;
}
int f (int* x, int* y)
...{
*x = 0;
*y = 1;
return 0;
}
int f (int *restrict x, int *restrict y)
...{
*x = 0;
*y = 1;
return 0;
}