Deleted Added
full compact
memalloc.h (248980) memalloc.h (250527)
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

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * @(#)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

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * @(#)memalloc.h 8.2 (Berkeley) 5/4/95
33 * $FreeBSD: head/bin/sh/memalloc.h 248980 2013-04-01 17:18:22Z jilles $
33 * $FreeBSD: head/bin/sh/memalloc.h 250527 2013-05-11 20:51:00Z jilles $
34 */
35
36#include <string.h>
37
38struct stackmark {
39 struct stack_block *stackp;
40 char *stacknxt;
41 int stacknleft;
34 */
35
36#include <string.h>
37
38struct stackmark {
39 struct stack_block *stackp;
40 char *stacknxt;
41 int stacknleft;
42 struct stackmark *marknext;
43};
44
45
46extern char *stacknxt;
47extern int stacknleft;
48extern char *sstrend;
49
50pointer ckmalloc(size_t);

--- 36 unchanged lines hidden ---
42};
43
44
45extern char *stacknxt;
46extern int stacknleft;
47extern char *sstrend;
48
49pointer ckmalloc(size_t);

--- 36 unchanged lines hidden ---