Current section
Files
Jump to
Current section
Files
scrypt/libcperciva/POSIX/posix-restrict.c
static int
foo(char * restrict x, char * restrict y)
{
return (x == y);
}
int
main(void)
{
char x[10];
char y[10];
return (foo(x, y));
}