Deleted Added
full compact
hash_buf.c (19029) hash_buf.c (71579)
1/*-
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Margo Seltzer.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
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.
1/*-
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Margo Seltzer.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
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 * $FreeBSD: head/lib/libc/db/hash/hash_buf.c 71579 2001-01-24 13:01:12Z deischen $
35 */
36
37#if defined(LIBC_SCCS) && !defined(lint)
38static char sccsid[] = "@(#)hash_buf.c 8.5 (Berkeley) 7/15/94";
39#endif /* LIBC_SCCS and not lint */
40
41/*
42 * PACKAGE: hash

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

51 * __buf_free
52 * __reclaim_buf
53 * Internal
54 * newbuf
55 */
56
57#include <sys/param.h>
58
37 */
38
39#if defined(LIBC_SCCS) && !defined(lint)
40static char sccsid[] = "@(#)hash_buf.c 8.5 (Berkeley) 7/15/94";
41#endif /* LIBC_SCCS and not lint */
42
43/*
44 * PACKAGE: hash

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

53 * __buf_free
54 * __reclaim_buf
55 * Internal
56 * newbuf
57 */
58
59#include <sys/param.h>
60
59#include <errno.h>
60#include <stddef.h>
61#include <stdio.h>
62#include <stdlib.h>
63
64#ifdef DEBUG
65#include <assert.h>
66#endif
67

--- 288 unchanged lines hidden ---
61#include <stddef.h>
62#include <stdio.h>
63#include <stdlib.h>
64
65#ifdef DEBUG
66#include <assert.h>
67#endif
68

--- 288 unchanged lines hidden ---