diff options
author | Nao Pross <naopross@thearcway.org> | 2017-05-02 16:14:41 +0200 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2017-05-02 16:14:41 +0200 |
commit | 1ec8f14f03322e3fe1f56f4abcbc85f5c2934dfc (patch) | |
tree | ee02eed9bdffd1db5bff20d3b9fa47b89f0e264b /sw/z80/kernel/include | |
parent | Merge branch 'master' into naopross (diff) | |
download | z80uPC-1ec8f14f03322e3fe1f56f4abcbc85f5c2934dfc.tar.gz z80uPC-1ec8f14f03322e3fe1f56f4abcbc85f5c2934dfc.zip |
fix for sdcc makefile
fix for the old makefile, because it could't compile more than one source file.
new libc directory with mem.c to start implementing the standard C library
(or at least the part we need).
Diffstat (limited to 'sw/z80/kernel/include')
-rw-r--r-- | sw/z80/kernel/include/types.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sw/z80/kernel/include/types.h b/sw/z80/kernel/include/types.h index adde214..c24b311 100644 --- a/sw/z80/kernel/include/types.h +++ b/sw/z80/kernel/include/types.h @@ -6,4 +6,6 @@ #define int16_t int #define uint16_t unsigned int +#define size_t uint16_t + #endif |