4.1cBSD/usr/src/bin/sh/setbrk.c

Compare this file to the similar file:
Show the results in this format:

/*	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);
}