I am trying to call malloc in Visual Studio Community 2019 assembly but I keep getting undefined reference to symbol malloc.
mov rcx,10h
call malloc
Does not compile as I get the undefined reference to malloc I have even tried it with _malloc with the same issue. Am I missing some sort of include?