scc

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

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:
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"