diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-31 17:31:23 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-31 17:31:23 +0100 |
commit | ffab6897aa1bc668f98130b4bb485a4602509938 (patch) | |
tree | a4d1933fc390ea0803bb3826353262fbf06b885f /AK/SimpleMalloc.h | |
parent | 27fa09aee492e6c8da9168d24f0b1d2c5d2162d5 (diff) | |
download | serenity-ffab6897aa1bc668f98130b4bb485a4602509938.zip |
Big, possibly complete sweep of naming changes.
Diffstat (limited to 'AK/SimpleMalloc.h')
-rw-r--r-- | AK/SimpleMalloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/SimpleMalloc.h b/AK/SimpleMalloc.h index 3b4457cdff..84b214533b 100644 --- a/AK/SimpleMalloc.h +++ b/AK/SimpleMalloc.h @@ -7,7 +7,7 @@ namespace SimpleMalloc { void initialize(); void dump(); byte* allocate(dword); -byte* allocateZeroed(dword); +byte* allocate_zeroed(dword); void free(byte*); byte* reallocate(byte*, dword); |