mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 13:49:17 +02:00
Implement Win32 specific process library. Currently the library only provides `exit` procedure.
5 lines
142 B
Text
5 lines
142 B
Text
;;> An interface to Win32 MSVCRT provided process functions and Win32 APIs
|
|
|
|
(c-system-include "stdlib.h")
|
|
|
|
(define-c void (%exit exit) (int))
|