4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-15 19:09:58 +08:00
2003-04-24 12:36:08 +00:00

19 lines
331 B
C

/* Version of sbrk for no operating system. */
void *
_sbrk (incr)
int incr;
{
extern char end; /* Set by linker. */
static char * heap_end;
char * prev_heap_end;
if (heap_end == 0)
heap_end = & end;
prev_heap_end = heap_end;
heap_end += incr;
return (void *) prev_heap_end;
}