opener.c 220 B

12345678910111213
  1. // This test only succeeds if run in the source root dir.
  2. #include<stdio.h>
  3. int main(int arg, char **argv) {
  4. FILE *f = fopen("opener.c", "r");
  5. if(f) {
  6. fclose(f);
  7. return 0;
  8. }
  9. return 1;
  10. }