aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/rmalloc.h
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-20 02:20:17 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-20 02:20:17 +0100
commit2309bf591b94963fb17652d00bf3fe2e2fe966aa (patch)
treea6e2746525bdede882d479d905c153a8a6471d26 /FICS/rmalloc.h
parent54f45160a1948aa47aa0550892770c8036955aed (diff)
Added alignment
Diffstat (limited to 'FICS/rmalloc.h')
-rw-r--r--FICS/rmalloc.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/FICS/rmalloc.h b/FICS/rmalloc.h
index cde1d06..9f38e6d 100644
--- a/FICS/rmalloc.h
+++ b/FICS/rmalloc.h
@@ -25,14 +25,13 @@
#ifndef _RMALLOC_H
#define _RMALLOC_H
-extern unsigned int allocated_size;
-extern unsigned int malloc_count;
-extern unsigned int free_count;
+extern unsigned int allocated_size;
+extern unsigned int malloc_count;
+extern unsigned int free_count;
-extern void *rmalloc(int);
-extern void *rrealloc(void *, int);
-extern void rfree(void *);
-extern void strfree(char *);
+extern void *rmalloc(int);
+extern void *rrealloc(void *, int);
+extern void rfree(void *);
+extern void strfree(char *);
#endif /* _RMALLOC_H */
-