date and time created 82/05/12 11:03:08 by rrh
[unix-history] / usr / src / old / sh / setbrk.c
/* setbrk.c 4.1 82/05/07 */
#
/*
* UNIX shell
*
* S. R. Bourne
* Bell Telephone Laboratories
*
*/
#include "defs.h"
setbrk(incr)
{
REG BYTPTR a=sbrk(incr);
brkend=a+incr;
return(a);
}