diff options
Diffstat (limited to 'third_party/lisp/mime4cl/ex-sclf.lisp')
-rw-r--r-- | third_party/lisp/mime4cl/ex-sclf.lisp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/third_party/lisp/mime4cl/ex-sclf.lisp b/third_party/lisp/mime4cl/ex-sclf.lisp index 19b3fa0860ab..bf5b157d167d 100644 --- a/third_party/lisp/mime4cl/ex-sclf.lisp +++ b/third_party/lisp/mime4cl/ex-sclf.lisp @@ -32,7 +32,6 @@ (defpackage :mime4cl-ex-sclf (:use :common-lisp) - (:import-from :sb-posix :stat :stat-size) (:export #:aif @@ -274,7 +273,7 @@ ELEMENT-TYPE." ;; allows to get to know the file size without being able to open a ;; file; just ask politely. (defun file-size (pathname) - #+sbcl (stat-size (unix-stat pathname)) + #+sbcl (sb-posix:stat-size (sb-posix:stat pathname)) #-sbcl (error "nyi")) ;; LAZY |