commit c3803dee4dae45c862f6c9d6498f8c8a8f16edb5 parent e94b20c35201970d378426a6b4bd03bc9eace326 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"