Raymond Toy pushed to branch rtoy-unix-core at cmucl / cmucl
Commits: dd85f37a by Raymond Toy at 2015-05-13T21:42:13Z Solaris needs u-int64-t.
- - - - -
1 changed file:
- src/code/unix.lisp
Changes:
===================================== src/code/unix.lisp ===================================== --- a/src/code/unix.lisp +++ b/src/code/unix.lisp @@ -40,6 +40,8 @@
(def-alien-type int64-t (signed 64))
+(def-alien-type u-int64-t (unsigned 64)) + (def-alien-type ino-t #+netbsd u-int64-t #+alpha unsigned-int
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/dd85f37a433d3b2adee49b4538...