diff options
| author | mycroft <mycroft@NetBSD.org> | 1993-08-02 17:48:44 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1993-08-02 17:48:44 +0000 |
| commit | aee4b07b8a049bdc57cefcbb82bebeb6f341859a (patch) | |
| tree | d2baf06176c4135542f5717a0fa9b45752f77e4f /lib/libc | |
| parent | c8194f0876b272d70833a6b91ec566314a02050a (diff) | |
Add RCS identifiers, remove some completely useless RCS logs and patchkit
headers, and a few other insignificant changes.
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/gen/regexp/regerror.c | 4 | ||||
| -rw-r--r-- | lib/libc/gen/regexp/regexp.c | 5 | ||||
| -rw-r--r-- | lib/libc/gen/regexp/regexp.h | 3 | ||||
| -rw-r--r-- | lib/libc/gen/regexp/regmagic.h | 2 | ||||
| -rw-r--r-- | lib/libc/gen/regexp/regsub.c | 5 | ||||
| -rw-r--r-- | lib/libc/i386/DEFS.h | 2 | ||||
| -rw-r--r-- | lib/libc/i386/gen/infinity.c | 4 | ||||
| -rw-r--r-- | lib/libc/i386/string/bcmp.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/bcopy.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/bzero.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/ffs.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/index.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/memchr.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/memcmp.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/memmove.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/memset.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/rindex.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/strcat.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/strchr.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/strcmp.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/strcpy.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/strlen.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/strncmp.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/strrchr.s | 2 |
24 files changed, 59 insertions, 0 deletions
diff --git a/lib/libc/gen/regexp/regerror.c b/lib/libc/gen/regexp/regerror.c index 6d0077d6342..e1fe0a6abd5 100644 --- a/lib/libc/gen/regexp/regerror.c +++ b/lib/libc/gen/regexp/regerror.c @@ -1,3 +1,7 @@ +#ifndef lint +static char rcsid[] = "$Id: regerror.c,v 1.2 1993/08/02 17:49:28 mycroft Exp $"; +#endif /* not lint */ + #include <regexp.h> #include <stdio.h> diff --git a/lib/libc/gen/regexp/regexp.c b/lib/libc/gen/regexp/regexp.c index 0084295bfb3..691175eacd2 100644 --- a/lib/libc/gen/regexp/regexp.c +++ b/lib/libc/gen/regexp/regexp.c @@ -32,6 +32,11 @@ * precedence is structured in regular expressions. Serious changes in * regular-expression syntax might require a total rethink. */ + +#ifndef lint +static char rcsid[] = "$Id: regexp.c,v 1.2 1993/08/02 17:49:30 mycroft Exp $"; +#endif /* not lint */ + #include <regexp.h> #include <stdio.h> #include <ctype.h> diff --git a/lib/libc/gen/regexp/regexp.h b/lib/libc/gen/regexp/regexp.h index 73d6bf41242..4bdd889709c 100644 --- a/lib/libc/gen/regexp/regexp.h +++ b/lib/libc/gen/regexp/regexp.h @@ -3,7 +3,10 @@ * * Caveat: this is V8 regexp(3) [actually, a reimplementation thereof], * not the System V one. + * + * $Id: regexp.h,v 1.2 1993/08/02 17:49:31 mycroft Exp $ */ + #define NSUBEXP 10 typedef struct regexp { char *startp[NSUBEXP]; diff --git a/lib/libc/gen/regexp/regmagic.h b/lib/libc/gen/regexp/regmagic.h index 5acf4478ff7..cebb828af11 100644 --- a/lib/libc/gen/regexp/regmagic.h +++ b/lib/libc/gen/regexp/regmagic.h @@ -1,3 +1,5 @@ +/* $Id: regmagic.h,v 1.2 1993/08/02 17:49:32 mycroft Exp $ */ + /* * The first byte of the regexp internal "program" is actually this magic * number; the start node begins in the second byte. diff --git a/lib/libc/gen/regexp/regsub.c b/lib/libc/gen/regexp/regsub.c index e55b9b624d1..babedcff198 100644 --- a/lib/libc/gen/regexp/regsub.c +++ b/lib/libc/gen/regexp/regsub.c @@ -18,6 +18,11 @@ * 3. Altered versions must be plainly marked as such, and must not * be misrepresented as being the original software. */ + +#ifndef lint +static char rcsid[] = "$Id: regsub.c,v 1.2 1993/08/02 17:49:33 mycroft Exp $"; +#endif /* not lint */ + #include <regexp.h> #include <stdio.h> #include <string.h> diff --git a/lib/libc/i386/DEFS.h b/lib/libc/i386/DEFS.h index f55bc3a945c..57fbc55db4c 100644 --- a/lib/libc/i386/DEFS.h +++ b/lib/libc/i386/DEFS.h @@ -1 +1,3 @@ +/* $Id: DEFS.h,v 1.4 1993/08/02 17:50:00 mycroft Exp $ */ + #include <machine/asm.h> diff --git a/lib/libc/i386/gen/infinity.c b/lib/libc/i386/gen/infinity.c index ae2058064fd..e99fc998520 100644 --- a/lib/libc/i386/gen/infinity.c +++ b/lib/libc/i386/gen/infinity.c @@ -1,3 +1,7 @@ +#ifndef lint +static char rcsid[] = "$Id: infinity.c,v 1.2 1993/08/02 17:49:36 mycroft Exp $"; +#endif /* not lint */ + /* infinity.c */ #include <math.h> diff --git a/lib/libc/i386/string/bcmp.s b/lib/libc/i386/string/bcmp.s index 776837e4f67..0707182eb7c 100644 --- a/lib/libc/i386/string/bcmp.s +++ b/lib/libc/i386/string/bcmp.s @@ -26,6 +26,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (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 1993/08/02 17:49:43 mycroft Exp $ */ #include "DEFS.h" diff --git a/lib/libc/i386/string/bcopy.s b/lib/libc/i386/string/bcopy.s index 03ffd9d3567..ba946a49755 100644 --- a/lib/libc/i386/string/bcopy.s +++ b/lib/libc/i386/string/bcopy.s @@ -31,6 +31,8 @@ * LIABILITY, OR TORT (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: bcopy.s,v 1.5 1993/08/02 17:49:44 mycroft Exp $ */ #if defined(LIBC_RCS) && !defined(lint) diff --git a/lib/libc/i386/string/bzero.s b/lib/libc/i386/string/bzero.s index b262a77faea..6019a0f14f5 100644 --- a/lib/libc/i386/string/bzero.s +++ b/lib/libc/i386/string/bzero.s @@ -26,6 +26,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (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.5 1993/08/02 17:49:45 mycroft Exp $ */ #include "DEFS.h" diff --git a/lib/libc/i386/string/ffs.s b/lib/libc/i386/string/ffs.s index 38b7ed5d0ec..24e376b6164 100644 --- a/lib/libc/i386/string/ffs.s +++ b/lib/libc/i386/string/ffs.s @@ -26,6 +26,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (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.3 1993/08/02 17:49:46 mycroft Exp $ */ #include "DEFS.h" diff --git a/lib/libc/i386/string/index.s b/lib/libc/i386/string/index.s index a14b9e49f35..49a826d72b1 100644 --- a/lib/libc/i386/string/index.s +++ b/lib/libc/i386/string/index.s @@ -26,6 +26,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (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.3 1993/08/02 17:49:47 mycroft Exp $ */ #include "DEFS.h" diff --git a/lib/libc/i386/string/memchr.s b/lib/libc/i386/string/memchr.s index de5d9294dab..eee600e78d6 100644 --- a/lib/libc/i386/string/memchr.s +++ b/lib/libc/i386/string/memchr.s @@ -26,6 +26,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (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.2 1993/08/02 17:49:47 mycroft Exp $ */ #include "DEFS.h" diff --git a/lib/libc/i386/string/memcmp.s b/lib/libc/i386/string/memcmp.s index 97fed150d52..0f6055d4a72 100644 --- a/lib/libc/i386/string/memcmp.s +++ b/lib/libc/i386/string/memcmp.s @@ -26,6 +26,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (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.2 1993/08/02 17:49:48 mycroft Exp $ */ #include "DEFS.h" diff --git a/lib/libc/i386/string/memmove.s b/lib/libc/i386/string/memmove.s index 74076ad50af..a983ba6526e 100644 --- a/lib/libc/i386/string/memmove.s +++ b/lib/libc/i386/string/memmove.s @@ -31,6 +31,8 @@ * LIABILITY, OR TORT (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: memmove.s,v 1.6 1993/08/02 17:49:49 mycroft Exp $ */ #if defined(LIBC_RCS) && !defined(lint) diff --git a/lib/libc/i386/string/memset.s b/lib/libc/i386/string/memset.s index 54be431490b..4a0964b502d 100644 --- a/lib/libc/i386/string/memset.s +++ b/lib/libc/i386/string/memset.s @@ -26,6 +26,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (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 1993/08/02 17:49:50 mycroft Exp $ */ #include "DEFS.h" diff --git a/lib/libc/i386/string/rindex.s b/lib/libc/i386/string/rindex.s index 129cdf3c5bf..a51e04081db 100644 --- a/lib/libc/i386/string/rindex.s +++ b/lib/libc/i386/string/rindex.s @@ -26,6 +26,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (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.3 1993/08/02 17:49:51 mycroft Exp $ */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strcat.s b/lib/libc/i386/string/strcat.s index b2889b86017..5d13b72507d 100644 --- a/lib/libc/i386/string/strcat.s +++ b/lib/libc/i386/string/strcat.s @@ -26,6 +26,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (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.4 1993/08/02 17:49:52 mycroft Exp $ */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strchr.s b/lib/libc/i386/string/strchr.s index 0a2911e39ad..bda92758b79 100644 --- a/lib/libc/i386/string/strchr.s +++ b/lib/libc/i386/string/strchr.s @@ -26,6 +26,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (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.3 1993/08/02 17:49:53 mycroft Exp $ */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strcmp.s b/lib/libc/i386/string/strcmp.s index 690904f2385..ba12668fadf 100644 --- a/lib/libc/i386/string/strcmp.s +++ b/lib/libc/i386/string/strcmp.s @@ -26,6 +26,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (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.3 1993/08/02 17:49:53 mycroft Exp $ */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strcpy.s b/lib/libc/i386/string/strcpy.s index cb2a023f22f..fd3c4868e43 100644 --- a/lib/libc/i386/string/strcpy.s +++ b/lib/libc/i386/string/strcpy.s @@ -26,6 +26,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (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.3 1993/08/02 17:49:54 mycroft Exp $ */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strlen.s b/lib/libc/i386/string/strlen.s index 2f75f5fee4d..5cabcd94ddb 100644 --- a/lib/libc/i386/string/strlen.s +++ b/lib/libc/i386/string/strlen.s @@ -26,6 +26,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (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.2 1993/08/02 17:49:55 mycroft Exp $ */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strncmp.s b/lib/libc/i386/string/strncmp.s index 7045922b8f0..55bc40102bb 100644 --- a/lib/libc/i386/string/strncmp.s +++ b/lib/libc/i386/string/strncmp.s @@ -26,6 +26,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (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.3 1993/08/02 17:49:56 mycroft Exp $ */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strrchr.s b/lib/libc/i386/string/strrchr.s index 024369cb28a..25283bdfb8a 100644 --- a/lib/libc/i386/string/strrchr.s +++ b/lib/libc/i386/string/strrchr.s @@ -26,6 +26,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (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.3 1993/08/02 17:49:57 mycroft Exp $ */ #include "DEFS.h" |
