X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-posix%2Fdefpackage.lisp;h=bf507d5175b6670c0c9ab61df285ad478337ea73;hb=9b6bef920da10d33e6fcd43c1bc06cf528f4f507;hp=0b94cdb2de8d3e7dd6aa98e21677095506351c96;hpb=84500b84beb8a03298beaf731d36faee5323b4d5;p=sbcl.git diff --git a/contrib/sb-posix/defpackage.lisp b/contrib/sb-posix/defpackage.lisp index 0b94cdb..bf507d5 100644 --- a/contrib/sb-posix/defpackage.lisp +++ b/contrib/sb-posix/defpackage.lisp @@ -1,2 +1,19 @@ -(defpackage :sb-posix (:use )) -(defpackage :sb-posix-internal (:use #:sb-alien #:cl)) +(defpackage :sb-posix (:use #:sb-alien #:cl) + (:shadow close open ftruncate truncate time) + (:export #:syscall-error #:syscall-errno + + ;; grovel structure accessors + + #:dirent-name + + ;; wrapper class accessors + + #:passwd-name #:passwd-passwd #:passwd-uid #:passwd-gid + #:passwd-gecos #:passwd-dir #:passwd-shell + #:stat-mode #:stat-ino #:stat-dev #:stat-nlink #:stat-uid + #:stat-gid #:stat-size #:stat-atime #:stat-mtime #:stat-ctime + #:termios-iflag #:termios-oflag #:termios-cflag + #:termios-lflag #:termios-cc)) + +#+win32 +(load-shared-object "msvcrt.dll")