scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

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:
Msrc/libc/arch/ppc32/linux/Makefile | 1+
Asrc/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"