- WIP (dynamic function structure implementation; parameter parcing missing)

This commit is contained in:
2017-03-01 14:36:53 +00:00
parent da56a3b6cf
commit ea0939d74d
6 changed files with 153 additions and 174 deletions

View File

@@ -16,7 +16,7 @@
#include "xmalloc.h"
#include "xtypes.h"
void *xmalloc(size_t size)
void* xmalloc(size_t size)
{
void *value = malloc(size);
if (value == 0)