memalloc.h (2a4562393f80633b81c11d4f7df00548d1cc3c48) | memalloc.h (84c3800cdcd0ca86a1c678a9eeb1adb3279550c4) |
---|---|
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 --- 27 unchanged lines hidden (view full) --- 36 * @(#)memalloc.h 8.2 (Berkeley) 5/4/95 37 * $FreeBSD$ 38 */ 39 40struct stackmark { 41 struct stack_block *stackp; 42 char *stacknxt; 43 int stacknleft; | 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 --- 27 unchanged lines hidden (view full) --- 36 * @(#)memalloc.h 8.2 (Berkeley) 5/4/95 37 * $FreeBSD$ 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 --- |