Skip to content
Snippets Groups Projects
Commit 737abbab authored by cshapiro's avatar cshapiro
Browse files

Use the alien off-t type to represent struct stat members with an

off_t type.
parent 98eb56d7
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix.lisp,v 1.110 2007/07/06 08:04:39 cshapiro Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix.lisp,v 1.111 2007/07/12 06:56:44 cshapiro Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -502,10 +502,8 @@
(st-atime (struct timespec-t))
(st-mtime (struct timespec-t))
(st-ctime (struct timespec-t))
(st-size unsigned-long) ; really quad
(st-sizeh unsigned-long) ;
(st-blocks unsigned-long) ; really quad
(st-blocksh unsigned-long)
(st-size off-t)
(st-blocks off-t)
(st-blksize unsigned-long)
(st-flags unsigned-long)
(st-gen unsigned-long)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment