date and time created 83/08/11 20:50:29 by sam
[unix-history] / usr / src / old / sh / setbrk.c
#ifndef lint
static char sccsid[] = "@(#)setbrk.c 4.2 %G%";
#endif
#
/*
* UNIX shell
*
* S. R. Bourne
* Bell Telephone Laboratories
*
*/
#include "defs.h"
setbrk(incr)
{
REG BYTPTR a=sbrk(incr);
brkend=a+incr;
return(a);
}