CheckFunctionExists.c 249 B

123456789101112131415
  1. #ifdef CHECK_FUNCTION_EXISTS
  2. char CHECK_FUNCTION_EXISTS();
  3. int main()
  4. {
  5. CHECK_FUNCTION_EXISTS();
  6. return 0;
  7. }
  8. #else /* CHECK_FUNCTION_EXISTS */
  9. # error "CHECK_FUNCTION_EXISTS has to specify the function"
  10. #endif /* CHECK_FUNCTION_EXISTS */