aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/CheckSharedFunctionExists.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/CheckSharedFunctionExists.c')
-rw-r--r--cmake/CheckSharedFunctionExists.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/cmake/CheckSharedFunctionExists.c b/cmake/CheckSharedFunctionExists.c
deleted file mode 100644
index 31e3fa92..00000000
--- a/cmake/CheckSharedFunctionExists.c
+++ /dev/null
@@ -1,38 +0,0 @@
-#ifdef CHECK_SHARED_FUNCTION_EXISTS
-
-#include <stdlib.h>
-
-#ifndef CALLSTACK
-#define CALLSTACK
-#endif
-
-#ifdef _WIN32
-#ifdef ARGSTACK
-char __stdcall CHECK_SHARED_FUNCTION_EXISTS(ARGSTACK);
-#else
-char __stdcall CHECK_SHARED_FUNCTION_EXISTS(void);
-#endif
-#else
-char CHECK_SHARED_FUNCTION_EXISTS();
-#endif
-
-#ifdef __CLASSIC_C__
-int main(){
- int ac;
- char*av[];
-#else
-int main(int ac, char*av[]){
-#endif
- CHECK_SHARED_FUNCTION_EXISTS(CALLSTACK);
- if(ac > 1000)
- {
- return *av[0];
- }
- return 0;
-}
-
-#else /* CHECK_SHARED_FUNCTION_EXISTS */
-
-# error "CHECK_SHARED_FUNCTION_EXISTS has to specify the function"
-
-#endif /* CHECK_SHARED_FUNCTION_EXISTS */