summaryrefslogtreecommitdiffstats
path: root/sw/z80/libc
diff options
context:
space:
mode:
authorleleraffa97@hotmail.it <leleraffa97@hotmail.it>2017-05-02 18:02:06 +0200
committerleleraffa97@hotmail.it <leleraffa97@hotmail.it>2017-05-02 18:02:06 +0200
commit2b59b9528106aced551c85b5f93b28befd1e4b96 (patch)
tree270e634089f8cc3be68908e16fa4d601fd7703a4 /sw/z80/libc
parentBasic sys io setup (diff)
parentfix for sdcc makefile (diff)
downloadz80uPC-2b59b9528106aced551c85b5f93b28befd1e4b96.tar.gz
z80uPC-2b59b9528106aced551c85b5f93b28befd1e4b96.zip
Merge remote-tracking branch 'origin/naopross' into atlas
Diffstat (limited to 'sw/z80/libc')
-rw-r--r--sw/z80/libc/mem.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sw/z80/libc/mem.c b/sw/z80/libc/mem.c
new file mode 100644
index 0000000..667a752
--- /dev/null
+++ b/sw/z80/libc/mem.c
@@ -0,0 +1,7 @@
+#include "types.h"
+#include "mem.h"
+
+void *malloc(size_t size)
+{
+ :
+}