safely.lisp: Explicitly state which library to get rename(2) from.
[lisp] / safely.lisp
index 0674429..43ea4fe 100644 (file)
 (progn
   (ffi:def-call-out %rename (:name "rename")
     (:language :stdc)
+    (:library "libc.so.6")
     (:arguments (from ffi:c-string)
                (to ffi:c-string))
     (:return-type ffi:int)))