_getheap.c - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
_getheap.c (85B)
---
1 #include "../../libc.h"
2
3 void *
4 _getheap(void)
5 {
6 extern char end[];
7
8 return end;
9 }