commit 5728cad35151d5021badd8c7fcf6273fda4a9320 parent eb2b3569657b977b75e42778551e9e297fd84f3c Author: zerous Naveen Narayanan <zerous@simple-cc.org> Date: Tue, 21 Apr 2020 21:50:56 +0200 libc: Implement _getheap for ppc32 Diffstat:
| M | src/libc/arch/ppc32/linux/Makefile | | | 1 | + |
| A | src/libc/arch/ppc32/linux/_getheap.c | | | 1 | + |
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/libc/arch/ppc32/linux/Makefile b/src/libc/arch/ppc32/linux/Makefile @@ -21,6 +21,7 @@ GENSRC = $(GENOBJS:.$O=.s) OBJS = \ $(GENOBJS)\ _cerrno.$O\ + _getheap.$O\ # Rules diff --git a/src/libc/arch/ppc32/linux/_getheap.c b/src/libc/arch/ppc32/linux/_getheap.c @@ -0,0 +1 @@ +#include "../../posix/_getheap.c"