blob: 43c53ce0252340ddf3b432c0922e1685a4066d76 [file] [log] [blame]
// This test only succeeds if run in the source root dir.
#include<stdio.h>
int main(int arg, char **argv) {
FILE *f = fopen("opener.c", "r");
if(f) {
fclose(f);
return 0;
}
return 1;
}