summaryrefslogtreecommitdiffstats
path: root/tests/common.tl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/common.tl')
-rw-r--r--tests/common.tl5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/common.tl b/tests/common.tl
index a61c0ff1..3cd5df63 100644
--- a/tests/common.tl
+++ b/tests/common.tl
@@ -32,3 +32,8 @@
(iff (f^ #/Darwin/) (ret :macos))
(ret :unknown))
u.sysname]))
+
+(defun libc ()
+ (caseql (os-symbol)
+ ((:linux :solaris :macos) (dlopen nil))
+ ((:cygwin) (dlopen "cygwin1.dll"))))