Commit 7a093857 authored by David Reid's avatar David Reid

Rename a function for clarity.

parent dde7961a
...@@ -11881,7 +11881,7 @@ Standard Library Stuff ...@@ -11881,7 +11881,7 @@ Standard Library Stuff
#endif #endif
#endif #endif
static MA_INLINE void ma_zero_memory(void* p, size_t sz) static MA_INLINE void ma_zero_memory_default(void* p, size_t sz)
{ {
#ifdef MA_WIN32 #ifdef MA_WIN32
ZeroMemory(p, sz); ZeroMemory(p, sz);
...@@ -11893,7 +11893,7 @@ static MA_INLINE void ma_zero_memory(void* p, size_t sz) ...@@ -11893,7 +11893,7 @@ static MA_INLINE void ma_zero_memory(void* p, size_t sz)
} }
#ifndef MA_ZERO_MEMORY #ifndef MA_ZERO_MEMORY
#define MA_ZERO_MEMORY(p, sz) ma_zero_memory((p), (sz)) #define MA_ZERO_MEMORY(p, sz) ma_zero_memory_default((p), (sz))
#endif #endif
#ifndef MA_COPY_MEMORY #ifndef MA_COPY_MEMORY
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment