mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
9 lines
237 B
Scheme
9 lines
237 B
Scheme
(define-library (chibi win32 process-win32)
|
|
(import (scheme base))
|
|
(export exit)
|
|
(cond-expand
|
|
(windows
|
|
(include-shared "process-win32")
|
|
(include "process-win32.scm"))
|
|
(else
|
|
(import (only (chibi process) exit)))))
|