summaryrefslogtreecommitdiff
path: root/libwardrobe/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'libwardrobe/src/main.c')
-rw-r--r--libwardrobe/src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libwardrobe/src/main.c b/libwardrobe/src/main.c
index e13c09d..d822aa5 100644
--- a/libwardrobe/src/main.c
+++ b/libwardrobe/src/main.c
@@ -53,7 +53,7 @@ inline void WardrobeInit (WardrobeHandle_t *wh) {
* @param pointer
* @param size or 0 to disable zeroing
*/
-inline void WardrobeFree (void *ptr, size_t size) {
+void WardrobeFree (void *ptr, size_t size) {
if (ptr != NULL) {
if (size > 0) {
memset (ptr, 0, size);