[Midnightbsd-cvs] src [10585] U trunk/lib/libc/i386/string: sync with freebsd
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Fri Jun 8 08:06:56 EDT 2018
Revision: 10585
http://svnweb.midnightbsd.org/src/?rev=10585
Author: laffer1
Date: 2018-06-08 08:06:55 -0400 (Fri, 08 Jun 2018)
Log Message:
-----------
sync with freebsd
Modified Paths:
--------------
trunk/lib/libc/i386/string/Makefile.inc
trunk/lib/libc/i386/string/bcmp.S
trunk/lib/libc/i386/string/bcopy.S
trunk/lib/libc/i386/string/bzero.S
trunk/lib/libc/i386/string/ffs.S
trunk/lib/libc/i386/string/index.S
trunk/lib/libc/i386/string/memchr.S
trunk/lib/libc/i386/string/memcmp.S
trunk/lib/libc/i386/string/memcpy.S
trunk/lib/libc/i386/string/memmove.S
trunk/lib/libc/i386/string/memset.S
trunk/lib/libc/i386/string/rindex.S
trunk/lib/libc/i386/string/strcat.S
trunk/lib/libc/i386/string/strchr.S
trunk/lib/libc/i386/string/strcmp.S
trunk/lib/libc/i386/string/strcpy.S
trunk/lib/libc/i386/string/strncmp.S
trunk/lib/libc/i386/string/strrchr.S
trunk/lib/libc/i386/string/swab.S
trunk/lib/libc/i386/string/wcschr.S
trunk/lib/libc/i386/string/wcscmp.S
trunk/lib/libc/i386/string/wcslen.S
trunk/lib/libc/i386/string/wmemchr.S
Property Changed:
----------------
trunk/lib/libc/i386/string/Makefile.inc
trunk/lib/libc/i386/string/bcmp.S
trunk/lib/libc/i386/string/bcopy.S
trunk/lib/libc/i386/string/bzero.S
trunk/lib/libc/i386/string/ffs.S
trunk/lib/libc/i386/string/index.S
trunk/lib/libc/i386/string/memchr.S
trunk/lib/libc/i386/string/memcmp.S
trunk/lib/libc/i386/string/memcpy.S
trunk/lib/libc/i386/string/memmove.S
trunk/lib/libc/i386/string/memset.S
trunk/lib/libc/i386/string/rindex.S
trunk/lib/libc/i386/string/strcat.S
trunk/lib/libc/i386/string/strchr.S
trunk/lib/libc/i386/string/strcmp.S
trunk/lib/libc/i386/string/strcpy.S
trunk/lib/libc/i386/string/strncmp.S
trunk/lib/libc/i386/string/strrchr.S
trunk/lib/libc/i386/string/swab.S
trunk/lib/libc/i386/string/wcschr.S
trunk/lib/libc/i386/string/wcscmp.S
trunk/lib/libc/i386/string/wcslen.S
trunk/lib/libc/i386/string/wmemchr.S
Modified: trunk/lib/libc/i386/string/Makefile.inc
===================================================================
--- trunk/lib/libc/i386/string/Makefile.inc 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/Makefile.inc 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,7 +1,7 @@
# @(#)Makefile.inc 8.1 (Berkeley) 6/4/93
-# $FreeBSD$
+# $FreeBSD: stable/10/lib/libc/i386/string/Makefile.inc 229368 2012-01-03 07:14:01Z ed $
+# $MidnightBSD$
-MDSRCS+=bcmp.S bcopy.S bzero.S ffs.S index.S memchr.S memcmp.S memcpy.S \
- memmove.S memset.S rindex.S strcat.S strchr.S strcmp.S strcpy.S \
- strncmp.S strrchr.S swab.S wcschr.S wcscmp.S wcslen.S \
- wmemchr.S
+MDSRCS+=bcmp.S bcopy.S bzero.S ffs.S memchr.S memcmp.S memcpy.S memmove.S \
+ memset.S strcat.S strchr.S strcmp.S strcpy.S strncmp.S strrchr.S \
+ swab.S wcschr.S wcscmp.S wcslen.S wmemchr.S
Property changes on: trunk/lib/libc/i386/string/Makefile.inc
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/bcmp.S
===================================================================
--- trunk/lib/libc/i386/string/bcmp.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/bcmp.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1993 Winning Strategies, Inc.
* All rights reserved.
@@ -29,7 +30,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/bcmp.S 217106 2011-01-07 16:08:40Z kib $");
/*
* bcmp (void *b1, void *b2, size_t len)
Property changes on: trunk/lib/libc/i386/string/bcmp.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/bcopy.S
===================================================================
--- trunk/lib/libc/i386/string/bcopy.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/bcopy.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -30,7 +31,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/bcopy.S 217106 2011-01-07 16:08:40Z kib $");
#if 0
RCSID("$NetBSD: bcopy.S,v 1.6 1996/11/12 00:50:06 jtc Exp $")
Property changes on: trunk/lib/libc/i386/string/bcopy.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/bzero.S
===================================================================
--- trunk/lib/libc/i386/string/bzero.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/bzero.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1993 Winning Strategies, Inc.
* All rights reserved.
@@ -29,7 +30,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/bzero.S 217106 2011-01-07 16:08:40Z kib $");
/*
* bzero (void *b, size_t len)
Property changes on: trunk/lib/libc/i386/string/bzero.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/ffs.S
===================================================================
--- trunk/lib/libc/i386/string/ffs.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/ffs.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1993 Winning Strategies, Inc.
* All rights reserved.
@@ -29,7 +30,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/ffs.S 217106 2011-01-07 16:08:40Z kib $");
/*
* ffs(value)
Property changes on: trunk/lib/libc/i386/string/ffs.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/index.S
===================================================================
--- trunk/lib/libc/i386/string/index.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/index.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1993 Winning Strategies, Inc.
* All rights reserved.
Property changes on: trunk/lib/libc/i386/string/index.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/memchr.S
===================================================================
--- trunk/lib/libc/i386/string/memchr.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/memchr.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1993 Winning Strategies, Inc.
* All rights reserved.
@@ -29,11 +30,11 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/memchr.S 249582 2013-04-17 11:40:10Z gabor $");
/*
* memchr (b, c, len)
- * locates the first occurance of c in string b.
+ * locates the first occurrence of c in string b.
*
* Written by:
* J.T. Conklin (jtc at wimsey.com), Winning Strategies, Inc.
Property changes on: trunk/lib/libc/i386/string/memchr.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/memcmp.S
===================================================================
--- trunk/lib/libc/i386/string/memcmp.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/memcmp.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1993 Winning Strategies, Inc.
* All rights reserved.
@@ -29,7 +30,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/memcmp.S 217106 2011-01-07 16:08:40Z kib $");
/*
* memcmp (void *b1, void *b2, size_t len)
Property changes on: trunk/lib/libc/i386/string/memcmp.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/memcpy.S
===================================================================
--- trunk/lib/libc/i386/string/memcpy.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/memcpy.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,5 +1,6 @@
+/* $MidnightBSD$ */
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/memcpy.S 218303 2011-02-04 21:04:00Z kib $");
#define MEMCOPY
#include "bcopy.S"
Property changes on: trunk/lib/libc/i386/string/memcpy.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/memmove.S
===================================================================
--- trunk/lib/libc/i386/string/memmove.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/memmove.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,5 +1,6 @@
+/* $MidnightBSD$ */
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/memmove.S 218303 2011-02-04 21:04:00Z kib $");
#define MEMMOVE
#include "bcopy.S"
Property changes on: trunk/lib/libc/i386/string/memmove.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/memset.S
===================================================================
--- trunk/lib/libc/i386/string/memset.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/memset.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1993 Winning Strategies, Inc.
* All rights reserved.
@@ -29,7 +30,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/memset.S 217106 2011-01-07 16:08:40Z kib $");
/*
* memset(void *b, int c, size_t len)
Property changes on: trunk/lib/libc/i386/string/memset.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/rindex.S
===================================================================
--- trunk/lib/libc/i386/string/rindex.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/rindex.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1993 Winning Strategies, Inc.
* All rights reserved.
Property changes on: trunk/lib/libc/i386/string/rindex.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/strcat.S
===================================================================
--- trunk/lib/libc/i386/string/strcat.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/strcat.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1993 Winning Strategies, Inc.
* All rights reserved.
@@ -29,7 +30,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/strcat.S 217106 2011-01-07 16:08:40Z kib $");
/*
* strcat(s, append)
Property changes on: trunk/lib/libc/i386/string/strcat.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/strchr.S
===================================================================
--- trunk/lib/libc/i386/string/strchr.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/strchr.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1993 Winning Strategies, Inc.
* All rights reserved.
@@ -29,15 +30,15 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/strchr.S 249582 2013-04-17 11:40:10Z gabor $");
/*
* strchr(s, c)
- * return a pointer to the first occurance of the character c in
+ * return a pointer to the first occurrence of the character c in
* string s, or NULL if c does not occur in the string.
*
* %edx - pointer iterating through string
- * %eax - pointer to first occurance of 'c'
+ * %eax - pointer to first occurrence of 'c'
* %cl - character we're comparing against
* %bl - character at %edx
*
@@ -63,4 +64,6 @@
ret
END(strchr)
+WEAK_ALIAS(index, strchr)
+
.section .note.GNU-stack,"",%progbits
Property changes on: trunk/lib/libc/i386/string/strchr.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/strcmp.S
===================================================================
--- trunk/lib/libc/i386/string/strcmp.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/strcmp.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1993 Winning Strategies, Inc.
* All rights reserved.
@@ -29,7 +30,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/strcmp.S 217106 2011-01-07 16:08:40Z kib $");
/*
* strcmp(s1, s2)
Property changes on: trunk/lib/libc/i386/string/strcmp.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/strcpy.S
===================================================================
--- trunk/lib/libc/i386/string/strcpy.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/strcpy.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1993 Winning Strategies, Inc.
* All rights reserved.
@@ -29,7 +30,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/strcpy.S 217106 2011-01-07 16:08:40Z kib $");
/*
* strcpy (dst, src)
Property changes on: trunk/lib/libc/i386/string/strcpy.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/strncmp.S
===================================================================
--- trunk/lib/libc/i386/string/strncmp.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/strncmp.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1993,94 Winning Strategies, Inc.
* All rights reserved.
@@ -29,7 +30,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/strncmp.S 217106 2011-01-07 16:08:40Z kib $");
/*
* strncmp(s1, s2, n)
Property changes on: trunk/lib/libc/i386/string/strncmp.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/strrchr.S
===================================================================
--- trunk/lib/libc/i386/string/strrchr.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/strrchr.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1993 Winning Strategies, Inc.
* All rights reserved.
@@ -29,15 +30,15 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/strrchr.S 249582 2013-04-17 11:40:10Z gabor $");
/*
* strrchr(s, c)
- * return a pointer to the last occurance of the character c in
+ * return a pointer to the last occurrence of the character c in
* string s, or NULL if c does not occur in the string.
*
* %edx - pointer iterating through string
- * %eax - pointer to last occurance of 'c'
+ * %eax - pointer to last occurrence of 'c'
* %cl - character we're comparing against
* %bl - character at %edx
*
@@ -64,4 +65,6 @@
ret
END(strrchr)
+WEAK_ALIAS(rindex, strrchr)
+
.section .note.GNU-stack,"",%progbits
Property changes on: trunk/lib/libc/i386/string/strrchr.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/swab.S
===================================================================
--- trunk/lib/libc/i386/string/swab.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/swab.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1993,94 Winning Strategies, Inc.
* All rights reserved.
@@ -29,7 +30,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/swab.S 217106 2011-01-07 16:08:40Z kib $");
/*
* void
Property changes on: trunk/lib/libc/i386/string/swab.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/wcschr.S
===================================================================
--- trunk/lib/libc/i386/string/wcschr.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/wcschr.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 2003 Tim J. Robbins.
* All rights reserved.
@@ -25,7 +26,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/wcschr.S 217106 2011-01-07 16:08:40Z kib $");
/*
* wchar_t *
Property changes on: trunk/lib/libc/i386/string/wcschr.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/wcscmp.S
===================================================================
--- trunk/lib/libc/i386/string/wcscmp.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/wcscmp.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 2003 Tim J. Robbins.
* All rights reserved.
@@ -25,7 +26,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/wcscmp.S 217106 2011-01-07 16:08:40Z kib $");
/*
* int
Property changes on: trunk/lib/libc/i386/string/wcscmp.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/wcslen.S
===================================================================
--- trunk/lib/libc/i386/string/wcslen.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/wcslen.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 2003 Tim J. Robbins.
* All rights reserved.
@@ -25,7 +26,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/wcslen.S 217106 2011-01-07 16:08:40Z kib $");
/*
* size_t
Property changes on: trunk/lib/libc/i386/string/wcslen.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/i386/string/wmemchr.S
===================================================================
--- trunk/lib/libc/i386/string/wmemchr.S 2018-06-08 12:06:14 UTC (rev 10584)
+++ trunk/lib/libc/i386/string/wmemchr.S 2018-06-08 12:06:55 UTC (rev 10585)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 2003 Tim J. Robbins.
* All rights reserved.
@@ -25,7 +26,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/i386/string/wmemchr.S 217106 2011-01-07 16:08:40Z kib $");
/*
* wchar_t *
Property changes on: trunk/lib/libc/i386/string/wmemchr.S
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
More information about the Midnightbsd-cvs
mailing list