source: trunk/libs/newlib/src/newlib/libc/sys/sysnec810/sbrk.c @ 577

Last change on this file since 577 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 155 bytes
Line 
1extern int _end;
2
3static char *end_of_data = (char *) &_end;
4
5char *
6_sbrk (int delta) {
7        char *ptr = end_of_data;
8
9        end_of_data += delta;
10        return ptr;
11}
12
Note: See TracBrowser for help on using the repository browser.