summaryrefslogtreecommitdiffstats
path: root/test/cc-gnu.c
blob: b1cb2ea8d10c315bc507f68d5844d6773812ed74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>

int main(void)
{
  fprintf(stdout,
    "#define __cc_gnu__ 1\n"
    );
  fprintf(stderr,
    "#include <...> search starts here:\n"
    " /some/include\n"
    " /some/Frameworks\n"
    " /some/CustomFW (framework directory)\n"
    );
  return 0;
}