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