9 lines
199 B
Scheme
9 lines
199 B
Scheme
|
;;; OS-dependent time stuff
|
||
|
;;; Copyright (c) 1995 by Olin Shivers.
|
||
|
|
||
|
;;; This suffices for BSD systems with the gettimeofday()
|
||
|
;;; microsecond-resolution timer.
|
||
|
|
||
|
(define (ticks/sec) 1000000) ; usec
|
||
|
|