scc

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

_getheap.c (85B)


      1 #include "../../libc.h"
      2 
      3 void *
      4 _getheap(void)
      5 {
      6 	extern char end[];
      7 
      8 	return end;
      9 }