diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-20 02:17:19 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-20 02:17:19 +0100 |
commit | 319e59087f519aa543b5cda599a43ba90c64a6fa (patch) | |
tree | 34a597bd7cbd32066caddb28e2080880999f3cef /FICS | |
parent | d0bd27f7309692314aa6ed54ee18405212ff11e6 (diff) |
Aligned vars
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/rmalloc.c | 6 |
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) |