diff options
Diffstat (limited to 'tests/common.tl')
-rw-r--r-- | tests/common.tl | 5 |
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")))) |