BSD 4_2 release
[unix-history] / usr / src / bin / sh / setbrk.c
CommitLineData
f6227721 1#ifndef lint
0f4556f1 2static char sccsid[] = "@(#)setbrk.c 4.2 8/11/83";
f6227721 3#endif
04b76f10
KM
4
5#
6/*
7 * UNIX shell
8 *
9 * S. R. Bourne
10 * Bell Telephone Laboratories
11 *
12 */
13
14#include "defs.h"
15
16setbrk(incr)
17{
18 REG BYTPTR a=sbrk(incr);
19 brkend=a+incr;
20 return(a);
21}