aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/226 link depends indexed custom target/foo.c
blob: 58c86a62b677e07a035f6be61483642f75549448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>

int main(void) {
  const char *fn = DEPFILE;
  FILE *f = fopen(fn, "r");
  if (!f) {
    printf("could not open %s", fn);
    return 1;
  }
  else {
    printf("successfully opened %s", fn);
  }

  return 0;
}