summaryrefslogtreecommitdiffstats
path: root/lib/libc/i386/string
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1995-01-23 01:30:24 +0000
committerdg <dg@FreeBSD.org>1995-01-23 01:30:24 +0000
commit29cbee93bc9e06890b49fa6bfa2fc390181c50bb (patch)
treea469ff6bb7e51875e8ca365cd6f190ac6fb588d4 /lib/libc/i386/string
parent5fd45395cb009d209b340ac4679e668af8b57355 (diff)
downloadFreeBSD-src-29cbee93bc9e06890b49fa6bfa2fc390181c50bb.zip
FreeBSD-src-29cbee93bc9e06890b49fa6bfa2fc390181c50bb.tar.gz
First round of changes to clean up the RCSID mess in libc:
1) Changed LIB_SCCS and SYSLIB_SCCS to LIB_RCS and SYSLIB_RCS. 2) Changed sccsid[] variables to rcsid[] 3) Moved all RCSID strings into .text 4) Converted all SCCSID's to RCS $Id$'s 5) Added missing $Id$'s after copyright.
Diffstat (limited to 'lib/libc/i386/string')
-rw-r--r--lib/libc/i386/string/Makefile.inc1
-rw-r--r--lib/libc/i386/string/bcmp.S5
-rw-r--r--lib/libc/i386/string/bcopy.S5
-rw-r--r--lib/libc/i386/string/bzero.S5
-rw-r--r--lib/libc/i386/string/ffs.S5
-rw-r--r--lib/libc/i386/string/index.S5
-rw-r--r--lib/libc/i386/string/memchr.S5
-rw-r--r--lib/libc/i386/string/memcmp.S5
-rw-r--r--lib/libc/i386/string/memmove.S5
-rw-r--r--lib/libc/i386/string/memset.S5
-rw-r--r--lib/libc/i386/string/rindex.S5
-rw-r--r--lib/libc/i386/string/strcat.S5
-rw-r--r--lib/libc/i386/string/strchr.S5
-rw-r--r--lib/libc/i386/string/strcmp.S5
-rw-r--r--lib/libc/i386/string/strcpy.S5
-rw-r--r--lib/libc/i386/string/strlen.S5
-rw-r--r--lib/libc/i386/string/strncmp.S5
-rw-r--r--lib/libc/i386/string/strrchr.S5
-rw-r--r--lib/libc/i386/string/swab.S7
19 files changed, 56 insertions, 37 deletions
diff --git a/lib/libc/i386/string/Makefile.inc b/lib/libc/i386/string/Makefile.inc
index c1dee3a..be5827f 100644
--- a/lib/libc/i386/string/Makefile.inc
+++ b/lib/libc/i386/string/Makefile.inc
@@ -1,4 +1,5 @@
# @(#)Makefile.inc 8.1 (Berkeley) 6/4/93
+# $Id$
SRCS+= bcmp.S bcopy.S bzero.S ffs.S index.S memchr.S memcmp.S \
memmove.S memset.S \
diff --git a/lib/libc/i386/string/bcmp.S b/lib/libc/i386/string/bcmp.S
index d199224..c15975a 100644
--- a/lib/libc/i386/string/bcmp.S
+++ b/lib/libc/i386/string/bcmp.S
@@ -27,11 +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.2 1994/03/31 14:10:57 davidg Exp $
+ * $Id: bcmp.S,v 1.1 1994/08/05 01:18:23 wollman Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: bcmp.S,v 1.2 1994/03/31 14:10:57 davidg Exp $"
+ .text
+ .asciz "$Id: bcmp.S,v 1.1 1994/08/05 01:18:23 wollman Exp $"
#endif /* LIBC_RCS and not lint */
#include "DEFS.h"
diff --git a/lib/libc/i386/string/bcopy.S b/lib/libc/i386/string/bcopy.S
index b68cdf3..1a6762c 100644
--- a/lib/libc/i386/string/bcopy.S
+++ b/lib/libc/i386/string/bcopy.S
@@ -32,11 +32,12 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: bcopy.S,v 1.1 1993/12/05 13:01:41 ats Exp $
+ * $Id: bcopy.S,v 1.1 1994/08/05 01:18:24 wollman Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: bcopy.S,v 1.1 1993/12/05 13:01:41 ats Exp $"
+ .text
+ .asciz "$Id: bcopy.S,v 1.1 1994/08/05 01:18:24 wollman 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 7e0dcdc..74a1d03 100644
--- a/lib/libc/i386/string/bzero.S
+++ b/lib/libc/i386/string/bzero.S
@@ -27,11 +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 1993/12/05 13:01:42 ats Exp $
+ * $Id: bzero.S,v 1.1 1994/08/05 01:18:25 wollman Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: bzero.S,v 1.1 1993/12/05 13:01:42 ats Exp $"
+ .text
+ .asciz "$Id: bzero.S,v 1.1 1994/08/05 01:18:25 wollman 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 42b6357..69ef90e 100644
--- a/lib/libc/i386/string/ffs.S
+++ b/lib/libc/i386/string/ffs.S
@@ -27,11 +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 1993/12/05 13:01:43 ats Exp $
+ * $Id: ffs.S,v 1.1 1994/08/05 01:18:26 wollman Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: ffs.S,v 1.1 1993/12/05 13:01:43 ats Exp $"
+ .text
+ .asciz "$Id: ffs.S,v 1.1 1994/08/05 01:18:26 wollman 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 1ac8473..f7b0d8d 100644
--- a/lib/libc/i386/string/index.S
+++ b/lib/libc/i386/string/index.S
@@ -27,11 +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 1993/12/05 13:01:46 ats Exp $
+ * $Id: index.S,v 1.1 1994/08/05 01:18:27 wollman Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: index.S,v 1.1 1993/12/05 13:01:46 ats Exp $"
+ .text
+ .asciz "$Id: index.S,v 1.1 1994/08/05 01:18:27 wollman 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 621a7fb..dd989d4 100644
--- a/lib/libc/i386/string/memchr.S
+++ b/lib/libc/i386/string/memchr.S
@@ -27,11 +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.3 1994/11/25 04:11:19 davidg Exp $
+ * $Id: memchr.S,v 1.4 1994/11/25 08:58:53 davidg Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: memchr.S,v 1.3 1994/11/25 04:11:19 davidg Exp $"
+ .text
+ .asciz "$Id: memchr.S,v 1.4 1994/11/25 08:58:53 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 5e74a73..f43329d 100644
--- a/lib/libc/i386/string/memcmp.S
+++ b/lib/libc/i386/string/memcmp.S
@@ -27,11 +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.3 1994/03/31 14:10:59 davidg Exp $
+ * $Id: memcmp.S,v 1.1 1994/08/05 01:18:29 wollman Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: memcmp.S,v 1.3 1994/03/31 14:10:59 davidg Exp $"
+ .text
+ .asciz "$Id: memcmp.S,v 1.1 1994/08/05 01:18:29 wollman Exp $"
#endif /* LIBC_RCS and not lint */
#include "DEFS.h"
diff --git a/lib/libc/i386/string/memmove.S b/lib/libc/i386/string/memmove.S
index 7eeec5b..1c74561 100644
--- a/lib/libc/i386/string/memmove.S
+++ b/lib/libc/i386/string/memmove.S
@@ -32,11 +32,12 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: memmove.S,v 1.2 1994/03/31 14:11:00 davidg Exp $
+ * $Id: memmove.S,v 1.1 1994/08/05 01:18:29 wollman Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: memmove.S,v 1.2 1994/03/31 14:11:00 davidg Exp $"
+ .text
+ .asciz "$Id: memmove.S,v 1.1 1994/08/05 01:18:29 wollman 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 b7fc069..412bcbb 100644
--- a/lib/libc/i386/string/memset.S
+++ b/lib/libc/i386/string/memset.S
@@ -27,11 +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.2 1994/03/31 14:11:01 davidg Exp $
+ * $Id: memset.S,v 1.1 1994/08/05 01:18:30 wollman Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: memset.S,v 1.2 1994/03/31 14:11:01 davidg Exp $"
+ .text
+ .asciz "$Id: memset.S,v 1.1 1994/08/05 01:18:30 wollman 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 3e95f5f..53af042 100644
--- a/lib/libc/i386/string/rindex.S
+++ b/lib/libc/i386/string/rindex.S
@@ -27,11 +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 1993/12/05 13:01:55 ats Exp $
+ * $Id: rindex.S,v 1.1 1994/08/05 01:18:31 wollman Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: rindex.S,v 1.1 1993/12/05 13:01:55 ats Exp $"
+ .text
+ .asciz "$Id: rindex.S,v 1.1 1994/08/05 01:18:31 wollman 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 5bb6fc4..9d5e119 100644
--- a/lib/libc/i386/string/strcat.S
+++ b/lib/libc/i386/string/strcat.S
@@ -27,11 +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 1993/12/05 13:01:56 ats Exp $
+ * $Id: strcat.S,v 1.1 1994/08/05 01:18:32 wollman Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: strcat.S,v 1.1 1993/12/05 13:01:56 ats Exp $"
+ .text
+ .asciz "$Id: strcat.S,v 1.1 1994/08/05 01:18:32 wollman 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 1b44b28..dd2e680 100644
--- a/lib/libc/i386/string/strchr.S
+++ b/lib/libc/i386/string/strchr.S
@@ -27,11 +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 1993/12/05 13:01:56 ats Exp $
+ * $Id: strchr.S,v 1.1 1994/08/05 01:18:33 wollman Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: strchr.S,v 1.1 1993/12/05 13:01:56 ats Exp $"
+ .text
+ .asciz "$Id: strchr.S,v 1.1 1994/08/05 01:18:33 wollman 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 bdc4585..ef076c5 100644
--- a/lib/libc/i386/string/strcmp.S
+++ b/lib/libc/i386/string/strcmp.S
@@ -27,11 +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.2 1994/03/04 15:50:28 ache Exp $
+ * $Id: strcmp.S,v 1.1 1994/08/05 01:18:34 wollman Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: strcmp.S,v 1.2 1994/03/04 15:50:28 ache Exp $"
+ .text
+ .asciz "$Id: strcmp.S,v 1.1 1994/08/05 01:18:34 wollman 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 07983f9..2d93e46 100644
--- a/lib/libc/i386/string/strcpy.S
+++ b/lib/libc/i386/string/strcpy.S
@@ -27,11 +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 1993/12/05 13:01:58 ats Exp $
+ * $Id: strcpy.S,v 1.1 1994/08/05 01:18:34 wollman Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: strcpy.S,v 1.1 1993/12/05 13:01:58 ats Exp $"
+ .text
+ .asciz "$Id: strcpy.S,v 1.1 1994/08/05 01:18:34 wollman 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 3729fa5..16eee1a 100644
--- a/lib/libc/i386/string/strlen.S
+++ b/lib/libc/i386/string/strlen.S
@@ -27,11 +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 1993/12/05 13:01:59 ats Exp $
+ * $Id: strlen.S,v 1.1 1994/08/05 01:18:35 wollman Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: strlen.S,v 1.1 1993/12/05 13:01:59 ats Exp $"
+ .text
+ .asciz "$Id: strlen.S,v 1.1 1994/08/05 01:18:35 wollman 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 be6319a..20788bd 100644
--- a/lib/libc/i386/string/strncmp.S
+++ b/lib/libc/i386/string/strncmp.S
@@ -27,11 +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.1 1994/08/05 01:18:36 wollman Exp $
+ * $Id: strncmp.S,v 1.2 1994/12/27 13:12:34 bde Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: strncmp.S,v 1.1 1994/08/05 01:18:36 wollman Exp $"
+ .text
+ .asciz "$Id: strncmp.S,v 1.2 1994/12/27 13:12:34 bde 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 ef4d776..28f0637 100644
--- a/lib/libc/i386/string/strrchr.S
+++ b/lib/libc/i386/string/strrchr.S
@@ -27,11 +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 1993/12/05 13:02:01 ats Exp $
+ * $Id: strrchr.S,v 1.1 1994/08/05 01:18:37 wollman Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
- .asciz "$Id: strrchr.S,v 1.1 1993/12/05 13:02:01 ats Exp $"
+ .text
+ .asciz "$Id: strrchr.S,v 1.1 1994/08/05 01:18:37 wollman 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 703fb36..87deded 100644
--- a/lib/libc/i386/string/swab.S
+++ b/lib/libc/i386/string/swab.S
@@ -27,11 +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.7 1994/03/12 01:40:09 jtc Exp $
+ * $Id: swab.S,v 1.1 1995/01/22 21:36:15 davidg Exp $
*/
-#if defined(LIBC_SCCS)
- .asciz "$Id$"
+#if defined(LIBC_RCS) && !defined(lint)
+ .text
+ .asciz "$Id: swab.S,v 1.1 1995/01/22 21:36:15 davidg Exp $"
#endif
#include "DEFS.h"
OpenPOWER on IntegriCloud