Deleted Added
full compact
bcopy.c (77117) bcopy.c (86170)
1/*-
2 * Copyright (c) 1990, 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 * Chris Torek.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

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
37#if defined(LIBC_SCCS) && !defined(lint)
38static char sccsid[] = "@(#)bcopy.c 8.1 (Berkeley) 6/4/93";
39#endif /* LIBC_SCCS and not lint */
1/*-
2 * Copyright (c) 1990, 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 * Chris Torek.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

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
37#if defined(LIBC_SCCS) && !defined(lint)
38static char sccsid[] = "@(#)bcopy.c 8.1 (Berkeley) 6/4/93";
39#endif /* LIBC_SCCS and not lint */
40#ifndef lint
41static const char rcsid[] =
42 "$FreeBSD: head/lib/libc/string/bcopy.c 77117 2001-05-24 08:47:42Z obrien $";
43#endif
44
45#include <sys/cdefs.h>
40#include <sys/cdefs.h>
41__FBSDID("$FreeBSD: head/lib/libc/string/bcopy.c 86170 2001-11-07 19:55:16Z obrien $");
42
46#include <string.h>
47
48/*
49 * sizeof(word) MUST BE A POWER OF TWO
50 * SO THAT wmask BELOW IS ALL ONES
51 */
52typedef int word; /* "word" used for optimal copy speed */
53

--- 90 unchanged lines hidden ---
43#include <string.h>
44
45/*
46 * sizeof(word) MUST BE A POWER OF TWO
47 * SO THAT wmask BELOW IS ALL ONES
48 */
49typedef int word; /* "word" used for optimal copy speed */
50

--- 90 unchanged lines hidden ---