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