thin-provisioning-tools/functional-tests/srfi/private/include/compat.chezscheme.sls
Joe Thornber 3e5de399a7 [functional tests] Remove dependency on the ThunderChez library.
I've just moved the relevant code into the functional-tests dir.
2020-04-30 12:07:42 +01:00

11 lines
157 B
Scheme

(library (srfi private include compat)
(export search-paths)
(import (chezscheme))
(define (search-paths)
(map car (library-directories)))
)