libc/libgloss/libnosys/sbrk.c

22 lines
366 B
C
Raw Normal View History

2003-04-24 14:36:08 +02:00
/* Version of sbrk for no operating system. */
2000-03-17 23:48:54 +01:00
#include "config.h"
#include <_syslist.h>
2003-04-24 14:36:08 +02:00
void *
_sbrk (incr)
int incr;
{
2003-04-24 14:36:08 +02:00
extern char end; /* Set by linker. */
static char * heap_end;
char * prev_heap_end;
2003-04-24 14:36:08 +02:00
if (heap_end == 0)
heap_end = & end;
2000-03-17 23:48:54 +01:00
prev_heap_end = heap_end;
heap_end += incr;
2003-04-24 14:36:08 +02:00
return (void *) prev_heap_end;
}