mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
Fix windows import
This commit is contained in:
parent
77dc8c3524
commit
f41a61f748
1 changed files with 2 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
||||||
|
|
||||||
(define-library (scheme process-context)
|
(define-library (scheme process-context)
|
||||||
(import (chibi) (only (scheme base) call/cc) (srfi 98))
|
(import (chibi) (only (scheme base) call/cc) (srfi 98))
|
||||||
(cond-expand (windows (import (rename (chibi win32 process-win32) (exit emergency-exit))))
|
(cond-expand (windows (import (prefix (only (chibi win32 process-win32) exit) process-)))
|
||||||
(else (import (prefix (chibi process) process-))))
|
(else (import (prefix (only (chibi process) exit) process-))))
|
||||||
(export get-environment-variable get-environment-variables
|
(export get-environment-variable get-environment-variables
|
||||||
command-line exit emergency-exit)
|
command-line exit emergency-exit)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue