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

char CHECK_FUNCTION_EXISTS();

int main(int ac, char*av[])
{
  int ret = 0;
  CHECK_FUNCTION_EXISTS();
  if(ac > 100)
    {
    ret = *av[0];
    }
  return ret;
}

#else  /* CHECK_FUNCTION_EXISTS */

#  error "CHECK_FUNCTION_EXISTS has to specify the function"

#endif /* CHECK_FUNCTION_EXISTS */