v/vlib/runtime/used_memory_default.c.v
2025-07-14 12:45:53 +03:00

6 lines
170 B
V

module runtime
// used_memory retrieves the current physical memory usage of the process.
pub fn used_memory() !u64 {
return error('`used_memory()` not implemented')
}