mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
Implement Win32 specific process library. Currently the library only provides `exit` procedure.
5 lines
154 B
Scheme
5 lines
154 B
Scheme
(define-library (chibi win32 process-win32)
|
|
(import (scheme base))
|
|
(export %exit)
|
|
(include-shared "process-win32")
|
|
(include "process-win32.scm"))
|