blob: 126b4b6afe9e7a90eba65ea5b13d4f55651ea6ac (
plain)
1
2
3
4
5
6
7
|
pkg sys =
type size = int64 /* spans entire address space */
type usize = uint64 /* unsigned size */
type off = int64 /* file offsets */
type intptr = uint64/* can hold any pointer losslessly */
type time = int64 /* milliseconds since epoch */
;;
|