xref: /original-bsd/old/sh/setbrk.c (revision 62734ea8)
1 /*	setbrk.c	4.1	82/05/07	*/
2 
3 #
4 /*
5  *	UNIX shell
6  *
7  *	S. R. Bourne
8  *	Bell Telephone Laboratories
9  *
10  */
11 
12 #include	"defs.h"
13 
14 setbrk(incr)
15 {
16 	REG BYTPTR	a=sbrk(incr);
17 	brkend=a+incr;
18 	return(a);
19 }
20