From eca7b5dbd6929a75075372cc4be2c6b376d9cb17 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Thu, 20 May 2010 17:30:26 +0200 Subject: final solution of library loader --- tests/library/test_loader.c | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'tests') diff --git a/tests/library/test_loader.c b/tests/library/test_loader.c index 15b5d12..ddcdbc5 100644 --- a/tests/library/test_loader.c +++ b/tests/library/test_loader.c @@ -27,17 +27,6 @@ #define LIBRARY_NAME "./testlib.so.0.0.0" #endif -#if defined _WIN32 -#define WOLF_LIBRARY_FUNC_CAST( symbol__, func_t__, func__ ) func__ = (func_t__)symbol__ -#else -#define WOLF_LIBRARY_FUNC_CAST( symbol__, func_t__, func__ ) \ - { \ - union { func_t__ f__; void *s__ } alias__; \ - alias__.s__ = symbol__; \ - func__ = alias__.f__; \ - } -#endif - int main( void ) { wolf_library_p library; wolf_error_t error; -- cgit v1.2.3-54-g00ecf