diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-15 12:22:19 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-15 12:22:19 (GMT) |
commit | fad91fb77038a243711677e904314ff0f283a68c (patch) | |
tree | 89337a6d28353128b27da9115ac1452d50907b91 /Modules/CheckFunctionExists.c | |
parent | c7a42a1b1f633d89d1d80d8b2703202b0827724e (diff) | |
download | CMake-fad91fb77038a243711677e904314ff0f283a68c.zip CMake-fad91fb77038a243711677e904314ff0f283a68c.tar.gz CMake-fad91fb77038a243711677e904314ff0f283a68c.tar.bz2 |
ENH: fix tests for non-ansi c on hp and remove warnings for ansi c
Diffstat (limited to 'Modules/CheckFunctionExists.c')
-rw-r--r-- | Modules/CheckFunctionExists.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/Modules/CheckFunctionExists.c b/Modules/CheckFunctionExists.c index e064c09..607b3e8 100644 --- a/Modules/CheckFunctionExists.c +++ b/Modules/CheckFunctionExists.c @@ -1,16 +1,19 @@ #ifdef CHECK_FUNCTION_EXISTS char CHECK_FUNCTION_EXISTS(); - -int main(int ac, char*av[]) -{ - int ret = 0; +#ifdef __CLASSIC_C__ +int main(){ + int ac; + char*av[]; +#else +int main(int ac, char*av[]){ +#endif CHECK_FUNCTION_EXISTS(); - if(ac > 100) + if(ac > 1000) { - ret = *av[0]; + return *av[0]; } - return ret; + return 0; } #else /* CHECK_FUNCTION_EXISTS */ |