mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
34b68f1945
This change might also fix fork() in certain cases on NT.
15 lines
251 B
ArmAsm
15 lines
251 B
ArmAsm
.include "o/libc/nt/codegen.inc"
|
|
.imp kernel32,__imp_GlobalFree,GlobalFree,0
|
|
|
|
.text.windows
|
|
GlobalFree:
|
|
push %rbp
|
|
mov %rsp,%rbp
|
|
.profilable
|
|
mov %rdi,%rcx
|
|
sub $32,%rsp
|
|
call *__imp_GlobalFree(%rip)
|
|
leave
|
|
ret
|
|
.endfn GlobalFree,globl
|
|
.previous
|