29 lines
481 B
C
29 lines
481 B
C
/* Copyright (c) 1984 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
#ifndef lint
|
|
static char sccsid[] = "@(#)setbrk.c 1.1 92/07/30 SMI"; /* from S5R3.1 1.8 */
|
|
#endif
|
|
|
|
/*
|
|
* UNIX shell
|
|
*/
|
|
|
|
#include "defs.h"
|
|
|
|
char *sbrk();
|
|
|
|
char*
|
|
setbrk(incr)
|
|
{
|
|
|
|
register char *a = sbrk(incr);
|
|
|
|
brkend = a + incr;
|
|
return(a);
|
|
}
|