@@ -1,14 +1,14 @@ #include #include -/* heapao.fn.c - kmheapao() "allocate heap object" +/* heapo.fn.c - kmheapo() "allocate heap object" * ~ lexi hale - * kmheapao() allocates a region in heap memory + * kmheapo() allocates a region in heap memory * and returns a kmptr struct referencing that * newly allocated region. */ -kmcond kmheapao(kmptr* where, sz size) { +kmcond kmheapo(kmptr* where, sz size) { void* ptr; kmcond e = kmheapa(&ptr, size); if (e != kmcond_ok) return e; kmptr p = {