diff options
author | Kirill Volinsky <Mataes2007@gmail.com> | 2017-11-29 09:33:41 +0300 |
---|---|---|
committer | Kirill Volinsky <Mataes2007@gmail.com> | 2017-11-29 09:33:41 +0300 |
commit | 89f3cf8bbb9dc1fa0fe72f6af6638ac086c7e011 (patch) | |
tree | 5be9a7ae2255b9ad420bed266b90b1f98059964a /libs/libevent/docs/cmake/CheckFunctionExistsEx.c | |
parent | e28c4adb361a87e143eb8cb2af449e3bcb3375b1 (diff) |
libevent, telegram, whatsapp moved to deprecated coz doesn't work
Diffstat (limited to 'libs/libevent/docs/cmake/CheckFunctionExistsEx.c')
-rw-r--r-- | libs/libevent/docs/cmake/CheckFunctionExistsEx.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/libs/libevent/docs/cmake/CheckFunctionExistsEx.c b/libs/libevent/docs/cmake/CheckFunctionExistsEx.c deleted file mode 100644 index 5ee3e5913a..0000000000 --- a/libs/libevent/docs/cmake/CheckFunctionExistsEx.c +++ /dev/null @@ -1,30 +0,0 @@ -#ifdef CHECK_FUNCTION_EXISTS - -#ifndef _WIN32 -char CHECK_FUNCTION_EXISTS(); -#endif - -#ifdef __CLASSIC_C__ -int main(){ - int ac; - char*av[]; -#else -int main(int ac, char*av[]){ -#endif -#ifdef _WIN32 - void * p = &CHECK_FUNCTION_EXISTS; -#else - CHECK_FUNCTION_EXISTS(); -#endif - if(ac > 1000) - { - return *av[0]; - } - return 0; -} - -#else /* CHECK_FUNCTION_EXISTS */ - -# error "CHECK_FUNCTION_EXISTS has to specify the function" - -#endif /* CHECK_FUNCTION_EXISTS */ |