diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 1998-07-24 04:57:32 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 1998-07-24 04:57:32 +0000 |
commit | a8a3fe17f40c9b40fdba5b5a54eccb48a980e821 (patch) | |
tree | cbb644b4992b30708378efe709bfa84fe6caddf4 /lib/libc/i386/string | |
parent | 95b66175a329d81a892710c81f126f1071ac17a0 (diff) |
Diffstat (limited to 'lib/libc/i386/string')
-rw-r--r-- | lib/libc/i386/string/Makefile.inc | 2 | ||||
-rw-r--r-- | lib/libc/i386/string/bcmp.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/string/bzero.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/string/ffs.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/string/index.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/string/memchr.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/string/memcmp.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/string/memset.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/string/rindex.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/string/strcat.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/string/strchr.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/string/strcmp.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/string/strcpy.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/string/strlen.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/string/strncmp.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/string/strrchr.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/string/swab.S | 4 |
17 files changed, 33 insertions, 33 deletions
diff --git a/lib/libc/i386/string/Makefile.inc b/lib/libc/i386/string/Makefile.inc index 8ad760c6e2d70..c524c0ca8c352 100644 --- a/lib/libc/i386/string/Makefile.inc +++ b/lib/libc/i386/string/Makefile.inc @@ -1,5 +1,5 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $Id: Makefile.inc,v 1.4 1995/01/23 01:28:45 davidg Exp $ +# $Id: Makefile.inc,v 1.4.6.1 1997/12/28 20:01:09 steve Exp $ SRCS+= bcmp.S bcopy.S bzero.S ffs.S index.S memchr.S memcmp.S \ memmove.S memcpy.S memset.S \ diff --git a/lib/libc/i386/string/bcmp.S b/lib/libc/i386/string/bcmp.S index c15975a3b685d..8452fdf8728af 100644 --- a/lib/libc/i386/string/bcmp.S +++ b/lib/libc/i386/string/bcmp.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: bcmp.S,v 1.1 1994/08/05 01:18:23 wollman Exp $ + * $Id: bcmp.S,v 1.2 1995/01/23 01:28:47 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: bcmp.S,v 1.1 1994/08/05 01:18:23 wollman Exp $" + .asciz "$Id: bcmp.S,v 1.2 1995/01/23 01:28:47 davidg Exp $" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/bzero.S b/lib/libc/i386/string/bzero.S index 74a1d03c46eef..1fe7299449c4d 100644 --- a/lib/libc/i386/string/bzero.S +++ b/lib/libc/i386/string/bzero.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: bzero.S,v 1.1 1994/08/05 01:18:25 wollman Exp $ + * $Id: bzero.S,v 1.2 1995/01/23 01:28:52 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: bzero.S,v 1.1 1994/08/05 01:18:25 wollman Exp $" + .asciz "$Id: bzero.S,v 1.2 1995/01/23 01:28:52 davidg Exp $" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/ffs.S b/lib/libc/i386/string/ffs.S index 69ef90e17ec66..e42c8a1b74c4b 100644 --- a/lib/libc/i386/string/ffs.S +++ b/lib/libc/i386/string/ffs.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ffs.S,v 1.1 1994/08/05 01:18:26 wollman Exp $ + * $Id: ffs.S,v 1.2 1995/01/23 01:28:54 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: ffs.S,v 1.1 1994/08/05 01:18:26 wollman Exp $" + .asciz "$Id: ffs.S,v 1.2 1995/01/23 01:28:54 davidg Exp $" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/index.S b/lib/libc/i386/string/index.S index f7b0d8d53e858..a9984f6f79d22 100644 --- a/lib/libc/i386/string/index.S +++ b/lib/libc/i386/string/index.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: index.S,v 1.1 1994/08/05 01:18:27 wollman Exp $ + * $Id: index.S,v 1.2 1995/01/23 01:28:56 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: index.S,v 1.1 1994/08/05 01:18:27 wollman Exp $" + .asciz "$Id: index.S,v 1.2 1995/01/23 01:28:56 davidg Exp $" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/memchr.S b/lib/libc/i386/string/memchr.S index dd989d4c01f05..236f7d8f12ec7 100644 --- a/lib/libc/i386/string/memchr.S +++ b/lib/libc/i386/string/memchr.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: memchr.S,v 1.4 1994/11/25 08:58:53 davidg Exp $ + * $Id: memchr.S,v 1.5 1995/01/23 01:28:58 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: memchr.S,v 1.4 1994/11/25 08:58:53 davidg Exp $" + .asciz "$Id: memchr.S,v 1.5 1995/01/23 01:28:58 davidg Exp $" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/memcmp.S b/lib/libc/i386/string/memcmp.S index f43329d8e724f..919632f0d634f 100644 --- a/lib/libc/i386/string/memcmp.S +++ b/lib/libc/i386/string/memcmp.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: memcmp.S,v 1.1 1994/08/05 01:18:29 wollman Exp $ + * $Id: memcmp.S,v 1.2 1995/01/23 01:29:00 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: memcmp.S,v 1.1 1994/08/05 01:18:29 wollman Exp $" + .asciz "$Id: memcmp.S,v 1.2 1995/01/23 01:29:00 davidg Exp $" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/memset.S b/lib/libc/i386/string/memset.S index 412bcbb2cca91..3b84777b4b9de 100644 --- a/lib/libc/i386/string/memset.S +++ b/lib/libc/i386/string/memset.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: memset.S,v 1.1 1994/08/05 01:18:30 wollman Exp $ + * $Id: memset.S,v 1.2 1995/01/23 01:29:04 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: memset.S,v 1.1 1994/08/05 01:18:30 wollman Exp $" + .asciz "$Id: memset.S,v 1.2 1995/01/23 01:29:04 davidg Exp $" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/rindex.S b/lib/libc/i386/string/rindex.S index 53af042ab1856..5d7718ae2a1bb 100644 --- a/lib/libc/i386/string/rindex.S +++ b/lib/libc/i386/string/rindex.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: rindex.S,v 1.1 1994/08/05 01:18:31 wollman Exp $ + * $Id: rindex.S,v 1.2 1995/01/23 01:29:06 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: rindex.S,v 1.1 1994/08/05 01:18:31 wollman Exp $" + .asciz "$Id: rindex.S,v 1.2 1995/01/23 01:29:06 davidg Exp $" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strcat.S b/lib/libc/i386/string/strcat.S index 9d5e119cb56be..f5166a5e68b0a 100644 --- a/lib/libc/i386/string/strcat.S +++ b/lib/libc/i386/string/strcat.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: strcat.S,v 1.1 1994/08/05 01:18:32 wollman Exp $ + * $Id: strcat.S,v 1.2 1995/01/23 01:29:09 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: strcat.S,v 1.1 1994/08/05 01:18:32 wollman Exp $" + .asciz "$Id: strcat.S,v 1.2 1995/01/23 01:29:09 davidg Exp $" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strchr.S b/lib/libc/i386/string/strchr.S index dd2e680545a22..97ed471e42dea 100644 --- a/lib/libc/i386/string/strchr.S +++ b/lib/libc/i386/string/strchr.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: strchr.S,v 1.1 1994/08/05 01:18:33 wollman Exp $ + * $Id: strchr.S,v 1.2 1995/01/23 01:29:12 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: strchr.S,v 1.1 1994/08/05 01:18:33 wollman Exp $" + .asciz "$Id: strchr.S,v 1.2 1995/01/23 01:29:12 davidg Exp $" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strcmp.S b/lib/libc/i386/string/strcmp.S index ef076c51dd282..434a0aed91c39 100644 --- a/lib/libc/i386/string/strcmp.S +++ b/lib/libc/i386/string/strcmp.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: strcmp.S,v 1.1 1994/08/05 01:18:34 wollman Exp $ + * $Id: strcmp.S,v 1.2 1995/01/23 01:29:14 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: strcmp.S,v 1.1 1994/08/05 01:18:34 wollman Exp $" + .asciz "$Id: strcmp.S,v 1.2 1995/01/23 01:29:14 davidg Exp $" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strcpy.S b/lib/libc/i386/string/strcpy.S index 2d93e46455266..c74651cfbb066 100644 --- a/lib/libc/i386/string/strcpy.S +++ b/lib/libc/i386/string/strcpy.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: strcpy.S,v 1.1 1994/08/05 01:18:34 wollman Exp $ + * $Id: strcpy.S,v 1.2 1995/01/23 01:29:17 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: strcpy.S,v 1.1 1994/08/05 01:18:34 wollman Exp $" + .asciz "$Id: strcpy.S,v 1.2 1995/01/23 01:29:17 davidg Exp $" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strlen.S b/lib/libc/i386/string/strlen.S index 16eee1aba4560..00da10187875a 100644 --- a/lib/libc/i386/string/strlen.S +++ b/lib/libc/i386/string/strlen.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: strlen.S,v 1.1 1994/08/05 01:18:35 wollman Exp $ + * $Id: strlen.S,v 1.2 1995/01/23 01:29:19 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: strlen.S,v 1.1 1994/08/05 01:18:35 wollman Exp $" + .asciz "$Id: strlen.S,v 1.2 1995/01/23 01:29:19 davidg Exp $" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strncmp.S b/lib/libc/i386/string/strncmp.S index 20788bd9eadc5..adea7752dd54c 100644 --- a/lib/libc/i386/string/strncmp.S +++ b/lib/libc/i386/string/strncmp.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: strncmp.S,v 1.2 1994/12/27 13:12:34 bde Exp $ + * $Id: strncmp.S,v 1.3 1995/01/23 01:29:21 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: strncmp.S,v 1.2 1994/12/27 13:12:34 bde Exp $" + .asciz "$Id: strncmp.S,v 1.3 1995/01/23 01:29:21 davidg Exp $" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strrchr.S b/lib/libc/i386/string/strrchr.S index 28f063795ad12..8ee670d8c974f 100644 --- a/lib/libc/i386/string/strrchr.S +++ b/lib/libc/i386/string/strrchr.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: strrchr.S,v 1.1 1994/08/05 01:18:37 wollman Exp $ + * $Id: strrchr.S,v 1.2 1995/01/23 01:29:23 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: strrchr.S,v 1.1 1994/08/05 01:18:37 wollman Exp $" + .asciz "$Id: strrchr.S,v 1.2 1995/01/23 01:29:23 davidg Exp $" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/swab.S b/lib/libc/i386/string/swab.S index 87deded2443b6..6e062449521db 100644 --- a/lib/libc/i386/string/swab.S +++ b/lib/libc/i386/string/swab.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: swab.S,v 1.1 1995/01/22 21:36:15 davidg Exp $ + * $Id: swab.S,v 1.2 1995/01/23 01:29:25 davidg Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id: swab.S,v 1.1 1995/01/22 21:36:15 davidg Exp $" + .asciz "$Id: swab.S,v 1.2 1995/01/23 01:29:25 davidg Exp $" #endif #include "DEFS.h" |