feat: disk read/write support for both ATA and ATAPI device
[lunaix-os.git] / lunaix-os / includes / lunaix / mm / valloc.h
index 076503f70fa762d647f808de7de9860deff70d15..d5d0c7530b5e97d08e225c33e8141f6164f8ede2 100644 (file)
@@ -4,12 +4,18 @@
 void*
 valloc(unsigned int size);
 
+void*
+vcalloc(unsigned int size);
+
 void
 vfree(void* ptr);
 
 void*
 valloc_dma(unsigned int size);
 
+void*
+vcalloc_dma(unsigned int size);
+
 void
 vfree_dma(void* ptr);