Deleted Added
full compact
memalloc.h (50471) memalloc.h (64702)
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)memalloc.h 8.2 (Berkeley) 5/4/95
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)memalloc.h 8.2 (Berkeley) 5/4/95
37 * $FreeBSD: head/bin/sh/memalloc.h 50471 1999-08-27 23:15:48Z peter $
37 * $FreeBSD: head/bin/sh/memalloc.h 64702 2000-08-16 10:39:43Z cracauer $
38 */
39
40struct stackmark {
41 struct stack_block *stackp;
42 char *stacknxt;
43 int stacknleft;
38 */
39
40struct stackmark {
41 struct stack_block *stackp;
42 char *stacknxt;
43 int stacknleft;
44 struct stackmark *marknext;
44};
45
46
47extern char *stacknxt;
48extern int stacknleft;
49extern int sstrnleft;
50extern int herefd;
51

--- 28 unchanged lines hidden ---
45};
46
47
48extern char *stacknxt;
49extern int stacknleft;
50extern int sstrnleft;
51extern int herefd;
52

--- 28 unchanged lines hidden ---