fix getpid for Windows ro use winapi instead of 'stdcall

This commit is contained in:
Matthew Flatt 2015-04-18 09:19:33 +01:00
parent 6943457ea1
commit 746e8ff1fb

View File

@ -55,7 +55,7 @@
(define windows-getpid
(delay-ffi-obj "GetCurrentProcessId" (force kernel32)
(_fun #:abi 'stdcall -> _int)))
(_fun #:abi winapi -> _int)))
(define (getpid)
((force (case (system-type)