blob: c946e18c28d9a460ddd01947a8b5e5c726538cd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// 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;
}
|