summaryrefslogtreecommitdiffstats
path: root/Modules/CheckFunctionExists.c
blob: e205b640540be77d2badd87e8b38db16eb033845 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifdef CHECK_FUNCTION_EXISTS

char CHECK_FUNCTION_EXISTS();

int main()
{
  CHECK_FUNCTION_EXISTS();
  return 0;
}

#else  /* CHECK_FUNCTION_EXISTS */

#  error "CHECK_FUNCTION_EXISTS has to specify the function"

#endif /* CHECK_FUNCTION_EXISTS */