aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/rmalloc.c
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-20 02:17:19 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-20 02:17:19 +0100
commit319e59087f519aa543b5cda599a43ba90c64a6fa (patch)
tree34a597bd7cbd32066caddb28e2080880999f3cef /FICS/rmalloc.c
parentd0bd27f7309692314aa6ed54ee18405212ff11e6 (diff)
Aligned vars
Diffstat (limited to 'FICS/rmalloc.c')
-rw-r--r--FICS/rmalloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/FICS/rmalloc.c b/FICS/rmalloc.c
index 97d8622..56faf65 100644
--- a/FICS/rmalloc.c
+++ b/FICS/rmalloc.c
@@ -27,9 +27,9 @@
#include "common.h"
-PUBLIC unsigned int allocated_size = 0;
-PUBLIC unsigned int malloc_count = 0;
-PUBLIC unsigned int free_count = 0;
+PUBLIC unsigned int allocated_size = 0;
+PUBLIC unsigned int malloc_count = 0;
+PUBLIC unsigned int free_count = 0;
PUBLIC void *
rmalloc(int byteSize)