Rename kumalloc to kumm_malloc and kuzalloc to kumm_zalloc for consistency with other naming

This commit is contained in:
Gregory Nutt
2014-08-31 16:24:24 -06:00
parent 7aefc6d3a1
commit 9aca0c1c84
35 changed files with 54 additions and 54 deletions
+2 -2
View File
@@ -76,8 +76,8 @@
/* User-accessible allocations */
# define lib_umalloc(s) kumalloc(s)
# define lib_uzalloc(s) kuzalloc(s)
# define lib_umalloc(s) kumm_malloc(s)
# define lib_uzalloc(s) kumm_zalloc(s)
# define lib_urealloc(p,s) kumm_realloc(p,s)
# define lib_ufree(p) kumm_free(p)