From acca45512825206805a471cac5cc668bbd676869 Mon Sep 17 00:00:00 2001 From: Keith Bostic Date: Thu, 21 Jul 1988 18:32:00 -0800 Subject: [PATCH] add Berkeley specific copyright; written by Robert Elz SCCS-vsn: lib/libc/string/bcmp.c 5.2 SCCS-vsn: lib/libc/string/bcopy.c 5.2 SCCS-vsn: lib/libc/string/bzero.c 5.2 SCCS-vsn: lib/libcompat/4.3/insque.c 5.2 SCCS-vsn: lib/libcompat/4.3/remque.c 5.2 --- usr/src/lib/libc/string/bcmp.c | 19 +++++++++++++++---- usr/src/lib/libc/string/bcopy.c | 19 +++++++++++++++---- usr/src/lib/libc/string/bzero.c | 19 +++++++++++++++---- usr/src/lib/libcompat/4.3/insque.c | 19 +++++++++++++++---- usr/src/lib/libcompat/4.3/remque.c | 19 +++++++++++++++---- 5 files changed, 75 insertions(+), 20 deletions(-) diff --git a/usr/src/lib/libc/string/bcmp.c b/usr/src/lib/libc/string/bcmp.c index eba76eaed6..57d3d1e0ae 100644 --- a/usr/src/lib/libc/string/bcmp.c +++ b/usr/src/lib/libc/string/bcmp.c @@ -1,12 +1,23 @@ /* * Copyright (c) 1987 Regents of the University of California. - * All rights reserved. The Berkeley software License Agreement - * specifies the terms and conditions for redistribution. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * advertising materials, and other materials related to such + * distribution and use acknowledge that the software was developed + * by the University of California, Berkeley. The name of the + * University may not be used to endorse or promote products derived + * from this software without specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)bcmp.c 5.1 (Berkeley) %G%"; -#endif LIBC_SCCS and not lint +static char sccsid[] = "@(#)bcmp.c 5.2 (Berkeley) %G%"; +#endif /* LIBC_SCCS and not lint */ /* * bcmp -- vax cmpc3 instruction diff --git a/usr/src/lib/libc/string/bcopy.c b/usr/src/lib/libc/string/bcopy.c index e8f9a82f16..47d8efa793 100644 --- a/usr/src/lib/libc/string/bcopy.c +++ b/usr/src/lib/libc/string/bcopy.c @@ -1,12 +1,23 @@ /* * Copyright (c) 1987 Regents of the University of California. - * All rights reserved. The Berkeley software License Agreement - * specifies the terms and conditions for redistribution. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * advertising materials, and other materials related to such + * distribution and use acknowledge that the software was developed + * by the University of California, Berkeley. The name of the + * University may not be used to endorse or promote products derived + * from this software without specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)bcopy.c 5.1 (Berkeley) %G%"; -#endif LIBC_SCCS and not lint +static char sccsid[] = "@(#)bcopy.c 5.2 (Berkeley) %G%"; +#endif /* LIBC_SCCS and not lint */ /* * bcopy -- vax movc3 instruction diff --git a/usr/src/lib/libc/string/bzero.c b/usr/src/lib/libc/string/bzero.c index 8415b04bee..f896777bc1 100644 --- a/usr/src/lib/libc/string/bzero.c +++ b/usr/src/lib/libc/string/bzero.c @@ -1,12 +1,23 @@ /* * Copyright (c) 1987 Regents of the University of California. - * All rights reserved. The Berkeley software License Agreement - * specifies the terms and conditions for redistribution. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * advertising materials, and other materials related to such + * distribution and use acknowledge that the software was developed + * by the University of California, Berkeley. The name of the + * University may not be used to endorse or promote products derived + * from this software without specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)bzero.c 5.1 (Berkeley) %G%"; -#endif LIBC_SCCS and not lint +static char sccsid[] = "@(#)bzero.c 5.2 (Berkeley) %G%"; +#endif /* LIBC_SCCS and not lint */ /* * bzero -- vax movc5 instruction diff --git a/usr/src/lib/libcompat/4.3/insque.c b/usr/src/lib/libcompat/4.3/insque.c index 7273ac1951..a4924667fd 100644 --- a/usr/src/lib/libcompat/4.3/insque.c +++ b/usr/src/lib/libcompat/4.3/insque.c @@ -1,12 +1,23 @@ /* * Copyright (c) 1987 Regents of the University of California. - * All rights reserved. The Berkeley software License Agreement - * specifies the terms and conditions for redistribution. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * advertising materials, and other materials related to such + * distribution and use acknowledge that the software was developed + * by the University of California, Berkeley. The name of the + * University may not be used to endorse or promote products derived + * from this software without specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)insque.c 5.1 (Berkeley) %G%"; -#endif LIBC_SCCS and not lint +static char sccsid[] = "@(#)insque.c 5.2 (Berkeley) %G%"; +#endif /* LIBC_SCCS and not lint */ /* * insque -- vax insque instruction diff --git a/usr/src/lib/libcompat/4.3/remque.c b/usr/src/lib/libcompat/4.3/remque.c index 047ec99c3e..9a9147aa5e 100644 --- a/usr/src/lib/libcompat/4.3/remque.c +++ b/usr/src/lib/libcompat/4.3/remque.c @@ -1,12 +1,23 @@ /* * Copyright (c) 1987 Regents of the University of California. - * All rights reserved. The Berkeley software License Agreement - * specifies the terms and conditions for redistribution. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * advertising materials, and other materials related to such + * distribution and use acknowledge that the software was developed + * by the University of California, Berkeley. The name of the + * University may not be used to endorse or promote products derived + * from this software without specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)remque.c 5.1 (Berkeley) %G%"; -#endif LIBC_SCCS and not lint +static char sccsid[] = "@(#)remque.c 5.2 (Berkeley) %G%"; +#endif /* LIBC_SCCS and not lint */ /* * remque -- vax remque instruction -- 2.20.1