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