10 lines
323 B
Racket
10 lines
323 B
Racket
|
|
(module unit racket/base
|
|
(require mzlib/unit)
|
|
(provide (except-out (all-from-out mzlib/unit)
|
|
struct struct/ctc
|
|
struct~s struct~s/ctc
|
|
struct~r struct~r/ctc)
|
|
(rename-out [struct~s struct]
|
|
[struct~s/ctc struct/ctc])))
|