mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-04-06 15:58:44 +00:00
16 lines
262 B
ArmAsm
16 lines
262 B
ArmAsm
#include "libc/nt/codegen.h"
|
|
.imp kernel32,__imp_FreeConsole,FreeConsole,0
|
|
|
|
#ifdef __x86_64__
|
|
.text.windows
|
|
FreeConsole:
|
|
push %rbp
|
|
mov %rsp,%rbp
|
|
.profilable
|
|
sub $32,%rsp
|
|
call *__imp_FreeConsole(%rip)
|
|
leave
|
|
ret
|
|
.endfn FreeConsole,globl
|
|
.previous
|
|
#endif
|