summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1994-10-26 05:27:43 +0000
committercgd <cgd@NetBSD.org>1994-10-26 05:27:43 +0000
commit69d2deb54539873ee1edcf9b792927079d07b671 (patch)
treee4347532130fb12cf276363246986c80e01121d6 /sys
parent0974859697ffcdfb9385a372b58117c1a8d821b4 (diff)
new RCS ID format.
Diffstat (limited to 'sys')
-rw-r--r--sys/compat/svr4/makesyscalls.sh4
-rw-r--r--sys/compat/svr4/svr4_dirent.h3
-rw-r--r--sys/compat/svr4/svr4_exec.c2
-rw-r--r--sys/compat/svr4/svr4_fcntl.c4
-rw-r--r--sys/compat/svr4/svr4_fcntl.h4
-rw-r--r--sys/compat/svr4/svr4_fuser.h4
-rw-r--r--sys/compat/svr4/svr4_ioctl.c4
-rw-r--r--sys/compat/svr4/svr4_misc.c4
-rw-r--r--sys/compat/svr4/svr4_signal.c4
-rw-r--r--sys/compat/svr4/svr4_signal.h4
-rw-r--r--sys/compat/svr4/svr4_stat.c4
-rw-r--r--sys/compat/svr4/svr4_stat.h4
-rw-r--r--sys/compat/svr4/svr4_time.h4
-rw-r--r--sys/compat/svr4/svr4_types.h4
-rw-r--r--sys/compat/svr4/svr4_ustat.h4
-rw-r--r--sys/compat/svr4/svr4_util.c4
-rw-r--r--sys/compat/svr4/svr4_util.h4
-rw-r--r--sys/compat/svr4/svr4_utsname.h4
-rw-r--r--sys/compat/svr4/syscalls.conf2
-rw-r--r--sys/compat/svr4/syscalls.master3
-rw-r--r--sys/lib/Makefile2
-rw-r--r--sys/lib/libc_sa/Makefile2
-rw-r--r--sys/lib/libc_sa/Makefile.inc2
-rw-r--r--sys/lib/libc_sa/bcopy.c8
-rw-r--r--sys/lib/libc_sa/errno.c4
-rw-r--r--sys/lib/libc_sa/memset.c6
-rw-r--r--sys/lib/libc_sa/printf.c5
-rw-r--r--sys/lib/libc_sa/salibc.h4
-rw-r--r--sys/lib/libc_sa/strerror.c4
29 files changed, 67 insertions, 44 deletions
diff --git a/sys/compat/svr4/makesyscalls.sh b/sys/compat/svr4/makesyscalls.sh
index 2a516b5d08b..87f59c0b376 100644
--- a/sys/compat/svr4/makesyscalls.sh
+++ b/sys/compat/svr4/makesyscalls.sh
@@ -1,6 +1,6 @@
#! /bin/sh -
-# $NetBSD: makesyscalls.sh,v 1.5 1994/08/15 23:48:41 mycroft Exp $
-#
+# $NetBSD: makesyscalls.sh,v 1.6 1994/10/26 05:27:43 cgd Exp $
+
# @(#)makesyscalls.sh 8.1 (Berkeley) 6/11/93
set -e
diff --git a/sys/compat/svr4/svr4_dirent.h b/sys/compat/svr4/svr4_dirent.h
index 02581e3b4a7..abfb392f03d 100644
--- a/sys/compat/svr4/svr4_dirent.h
+++ b/sys/compat/svr4/svr4_dirent.h
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_dirent.h,v 1.1 1994/10/24 17:37:34 deraadt Exp $ */
+/* $NetBSD: svr4_dirent.h,v 1.2 1994/10/26 05:27:44 cgd Exp $ */
+
/*
* Copyright (c) 1994 Christos Zoulas
* All rights reserved.
diff --git a/sys/compat/svr4/svr4_exec.c b/sys/compat/svr4/svr4_exec.c
index e3f5e4c565b..bf8575b678e 100644
--- a/sys/compat/svr4/svr4_exec.c
+++ b/sys/compat/svr4/svr4_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: svr4_exec.c,v 1.5 1994/10/24 17:37:36 deraadt Exp $ */
+/* $NetBSD: svr4_exec.c,v 1.6 1994/10/26 05:27:45 cgd Exp $ */
/*
* Copyright (c) 1994 Christos Zoulas
diff --git a/sys/compat/svr4/svr4_fcntl.c b/sys/compat/svr4/svr4_fcntl.c
index 28595d3a770..453018161b4 100644
--- a/sys/compat/svr4/svr4_fcntl.c
+++ b/sys/compat/svr4/svr4_fcntl.c
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_fcntl.c,v 1.1 1994/10/24 17:37:38 deraadt Exp $ */
+/* $NetBSD: svr4_fcntl.c,v 1.2 1994/10/26 05:27:47 cgd Exp $ */
+
/*
* Copyright (c) 1994 Christos Zoulas
* All rights reserved.
@@ -30,7 +31,6 @@
* 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.
- *
*/
#include <sys/param.h>
diff --git a/sys/compat/svr4/svr4_fcntl.h b/sys/compat/svr4/svr4_fcntl.h
index 71a89f4676b..f0bb3932867 100644
--- a/sys/compat/svr4/svr4_fcntl.h
+++ b/sys/compat/svr4/svr4_fcntl.h
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_fcntl.h,v 1.1 1994/10/24 17:37:39 deraadt Exp $ */
+/* $NetBSD: svr4_fcntl.h,v 1.2 1994/10/26 05:27:48 cgd Exp $ */
+
/*
* Copyright (c) 1994 Christos Zoulas
* All rights reserved.
@@ -25,6 +26,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+
#ifndef _SVR4_FCNTL_H_
#define _SVR4_FCNTL_H_
diff --git a/sys/compat/svr4/svr4_fuser.h b/sys/compat/svr4/svr4_fuser.h
index c6999aeb913..518260ffbc9 100644
--- a/sys/compat/svr4/svr4_fuser.h
+++ b/sys/compat/svr4/svr4_fuser.h
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_fuser.h,v 1.1 1994/10/24 17:37:41 deraadt Exp $ */
+/* $NetBSD: svr4_fuser.h,v 1.2 1994/10/26 05:27:49 cgd Exp $ */
+
/*
* Copyright (c) 1994 Christos Zoulas
* All rights reserved.
@@ -25,6 +26,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+
#ifndef _SVR4_FUSER_H_
#define _SVR4_FUSER_H_
diff --git a/sys/compat/svr4/svr4_ioctl.c b/sys/compat/svr4/svr4_ioctl.c
index 9d4fd3431a2..2fcbc8a4f7c 100644
--- a/sys/compat/svr4/svr4_ioctl.c
+++ b/sys/compat/svr4/svr4_ioctl.c
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_ioctl.c,v 1.4 1994/10/24 17:37:42 deraadt Exp $ */
+/* $NetBSD: svr4_ioctl.c,v 1.5 1994/10/26 05:27:50 cgd Exp $ */
+
/*
* Copyright (c) 1994 Christos Zoulas
* All rights reserved.
@@ -22,6 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+
#include <sys/param.h>
#include <sys/proc.h>
#include <sys/systm.h>
diff --git a/sys/compat/svr4/svr4_misc.c b/sys/compat/svr4/svr4_misc.c
index 1f9c240c802..770a6028676 100644
--- a/sys/compat/svr4/svr4_misc.c
+++ b/sys/compat/svr4/svr4_misc.c
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_misc.c,v 1.7 1994/10/24 17:37:43 deraadt Exp $ */
+/* $NetBSD: svr4_misc.c,v 1.8 1994/10/26 05:27:51 cgd Exp $ */
+
/*
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
@@ -39,7 +40,6 @@
* 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.
- *
*/
/*
diff --git a/sys/compat/svr4/svr4_signal.c b/sys/compat/svr4/svr4_signal.c
index 814eba550db..207fd0fab60 100644
--- a/sys/compat/svr4/svr4_signal.c
+++ b/sys/compat/svr4/svr4_signal.c
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_signal.c,v 1.1 1994/10/24 17:37:44 deraadt Exp $ */
+/* $NetBSD: svr4_signal.c,v 1.2 1994/10/26 05:27:52 cgd Exp $ */
+
/*
* Copyright (c) 1994 Christos Zoulas
* All rights reserved.
@@ -30,7 +31,6 @@
* 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.
- *
*/
#include <sys/param.h>
diff --git a/sys/compat/svr4/svr4_signal.h b/sys/compat/svr4/svr4_signal.h
index 8aefc4b45ec..0c93e3b4ac8 100644
--- a/sys/compat/svr4/svr4_signal.h
+++ b/sys/compat/svr4/svr4_signal.h
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_signal.h,v 1.1 1994/10/24 17:37:45 deraadt Exp $ */
+/* $NetBSD: svr4_signal.h,v 1.2 1994/10/26 05:27:54 cgd Exp $ */
+
/*
* Copyright (c) 1994 Christos Zoulas
* All rights reserved.
@@ -25,6 +26,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+
#ifndef _SVR4_SIGNAL_H_
#define _SVR4_SIGNAL_H_
diff --git a/sys/compat/svr4/svr4_stat.c b/sys/compat/svr4/svr4_stat.c
index 4300e613573..d23fce8d083 100644
--- a/sys/compat/svr4/svr4_stat.c
+++ b/sys/compat/svr4/svr4_stat.c
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_stat.c,v 1.1 1994/10/24 17:37:46 deraadt Exp $ */
+/* $NetBSD: svr4_stat.c,v 1.2 1994/10/26 05:27:55 cgd Exp $ */
+
/*
* Copyright (c) 1994 Christos Zoulas
* All rights reserved.
@@ -30,7 +31,6 @@
* 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.
- *
*/
#include <sys/param.h>
diff --git a/sys/compat/svr4/svr4_stat.h b/sys/compat/svr4/svr4_stat.h
index 1946c233b65..1f7497a16cf 100644
--- a/sys/compat/svr4/svr4_stat.h
+++ b/sys/compat/svr4/svr4_stat.h
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_stat.h,v 1.1 1994/10/24 17:37:48 deraadt Exp $ */
+/* $NetBSD: svr4_stat.h,v 1.2 1994/10/26 05:27:57 cgd Exp $ */
+
/*
* Copyright (c) 1994 Christos Zoulas
* All rights reserved.
@@ -25,6 +26,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+
#ifndef _SVR4_STAT_H_
#define _SVR4_STAT_H_
diff --git a/sys/compat/svr4/svr4_time.h b/sys/compat/svr4/svr4_time.h
index 1247f1ff705..fa8c0632486 100644
--- a/sys/compat/svr4/svr4_time.h
+++ b/sys/compat/svr4/svr4_time.h
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_time.h,v 1.1 1994/10/24 17:37:54 deraadt Exp $ */
+/* $NetBSD: svr4_time.h,v 1.2 1994/10/26 05:27:59 cgd Exp $ */
+
/*
* Copyright (c) 1994 Christos Zoulas
* All rights reserved.
@@ -25,6 +26,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+
#ifndef _SVR4_TIME_H_
#define _SVR4_TIME_H_
diff --git a/sys/compat/svr4/svr4_types.h b/sys/compat/svr4/svr4_types.h
index 2455b8b6935..7da27be6163 100644
--- a/sys/compat/svr4/svr4_types.h
+++ b/sys/compat/svr4/svr4_types.h
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_types.h,v 1.1 1994/10/24 17:37:55 deraadt Exp $ */
+/* $NetBSD: svr4_types.h,v 1.2 1994/10/26 05:28:00 cgd Exp $ */
+
/*
* Copyright (c) 1994 Christos Zoulas
* All rights reserved.
@@ -25,6 +26,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+
#ifndef _SVR4_TYPES_H_
#define _SVR4_TYPES_H_
diff --git a/sys/compat/svr4/svr4_ustat.h b/sys/compat/svr4/svr4_ustat.h
index 05ac83d7098..5bcede2dab3 100644
--- a/sys/compat/svr4/svr4_ustat.h
+++ b/sys/compat/svr4/svr4_ustat.h
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_ustat.h,v 1.1 1994/10/24 17:37:57 deraadt Exp $ */
+/* $NetBSD: svr4_ustat.h,v 1.2 1994/10/26 05:28:02 cgd Exp $ */
+
/*
* Copyright (c) 1994 Christos Zoulas
* All rights reserved.
@@ -25,6 +26,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+
#ifndef _SVR4_USTAT_H_
#define _SVR4_USTAT_H_
diff --git a/sys/compat/svr4/svr4_util.c b/sys/compat/svr4/svr4_util.c
index e3959ac7f4b..47cb52a3197 100644
--- a/sys/compat/svr4/svr4_util.c
+++ b/sys/compat/svr4/svr4_util.c
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_util.c,v 1.1 1994/10/24 17:37:58 deraadt Exp $ */
+/* $NetBSD: svr4_util.c,v 1.2 1994/10/26 05:28:03 cgd Exp $ */
+
/*
* Copyright (c) 1994 Christos Zoulas
* All rights reserved.
@@ -30,7 +31,6 @@
* 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.
- *
*/
#include <sys/param.h>
diff --git a/sys/compat/svr4/svr4_util.h b/sys/compat/svr4/svr4_util.h
index 148d9e6a924..da03a049a19 100644
--- a/sys/compat/svr4/svr4_util.h
+++ b/sys/compat/svr4/svr4_util.h
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_util.h,v 1.1 1994/10/24 17:37:59 deraadt Exp $ */
+/* $NetBSD: svr4_util.h,v 1.2 1994/10/26 05:28:05 cgd Exp $ */
+
/*
* Copyright (c) 1994 Christos Zoulas
* All rights reserved.
@@ -25,6 +26,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+
#ifndef _SVR4_UTIL_H_
#define _SVR4_UTIL_H_
diff --git a/sys/compat/svr4/svr4_utsname.h b/sys/compat/svr4/svr4_utsname.h
index efb9072a2ba..09ba80b0ca6 100644
--- a/sys/compat/svr4/svr4_utsname.h
+++ b/sys/compat/svr4/svr4_utsname.h
@@ -1,4 +1,5 @@
-/* $NetBSD: svr4_utsname.h,v 1.1 1994/10/24 17:38:00 deraadt Exp $ */
+/* $NetBSD: svr4_utsname.h,v 1.2 1994/10/26 05:28:07 cgd Exp $ */
+
/*
* Copyright (c) 1994 Christos Zoulas
* All rights reserved.
@@ -25,6 +26,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+
#ifndef _SVR4_UTSNAME_H_
#define _SVR4_UTSNAME_H_
diff --git a/sys/compat/svr4/syscalls.conf b/sys/compat/svr4/syscalls.conf
index edee62900ee..2cb29b9c956 100644
--- a/sys/compat/svr4/syscalls.conf
+++ b/sys/compat/svr4/syscalls.conf
@@ -1,4 +1,4 @@
-# $Id: syscalls.conf,v 1.2 1994/10/24 23:26:02 deraadt Exp $
+# $NetBSD: syscalls.conf,v 1.3 1994/10/26 05:28:08 cgd Exp $
sysnames="svr4_syscalls.c"
sysnumhdr="svr4_syscall.h"
diff --git a/sys/compat/svr4/syscalls.master b/sys/compat/svr4/syscalls.master
index d2c84da7a47..8740ee7d41c 100644
--- a/sys/compat/svr4/syscalls.master
+++ b/sys/compat/svr4/syscalls.master
@@ -1,4 +1,5 @@
- $NetBSD: syscalls.master,v 1.3 1994/10/24 17:38:02 deraadt Exp $
+ $NetBSD: syscalls.master,v 1.4 1994/10/26 05:28:10 cgd Exp $
+
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
; System call name/number master file (or rather, slave, from SunOS).
; Processed to created svr4_sysent.c, svr4_syscalls.c and svr4_syscall.h.
diff --git a/sys/lib/Makefile b/sys/lib/Makefile
index e50e5202b3d..def5fbbcb5d 100644
--- a/sys/lib/Makefile
+++ b/sys/lib/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.4 1994/07/27 03:10:37 brezak Exp $
+# $NetBSD: Makefile,v 1.5 1994/10/26 05:36:41 cgd Exp $
.if exists(libsa)
SUBDIR+= libsa
diff --git a/sys/lib/libc_sa/Makefile b/sys/lib/libc_sa/Makefile
index c5f51fe200c..8b204f3f907 100644
--- a/sys/lib/libc_sa/Makefile
+++ b/sys/lib/libc_sa/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.3 1993/10/23 02:33:12 cgd Exp $
+# $NetBSD: Makefile,v 1.4 1994/10/26 05:36:44 cgd Exp $
LIB= c_sa
diff --git a/sys/lib/libc_sa/Makefile.inc b/sys/lib/libc_sa/Makefile.inc
index 27ecdad40a7..1b80bb233c1 100644
--- a/sys/lib/libc_sa/Makefile.inc
+++ b/sys/lib/libc_sa/Makefile.inc
@@ -1,4 +1,4 @@
-# $Id: Makefile.inc,v 1.3 1993/10/23 02:33:13 cgd Exp $
+# $NetBSD: Makefile.inc,v 1.4 1994/10/26 05:36:46 cgd Exp $
#
# NOTE: $S must correspond to the top of the 'sys' tree
diff --git a/sys/lib/libc_sa/bcopy.c b/sys/lib/libc_sa/bcopy.c
index 54a19465f7a..df428c1dc0b 100644
--- a/sys/lib/libc_sa/bcopy.c
+++ b/sys/lib/libc_sa/bcopy.c
@@ -1,3 +1,5 @@
+/* $NetBSD: bcopy.c,v 1.2 1994/10/26 05:36:47 cgd Exp $ */
+
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -35,8 +37,10 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)bcopy.c 5.11 (Berkeley) 6/21/91";*/
-static char *rcsid = "$Id: bcopy.c,v 1.1 1993/10/13 11:16:22 cgd Exp $";
+#ifdef notdef
+static char *sccsid = "@(#)bcopy.c 5.11 (Berkeley) 6/21/91";
+#endif
+static char *rcsid = "$NetBSD: bcopy.c,v 1.2 1994/10/26 05:36:47 cgd Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/cdefs.h>
diff --git a/sys/lib/libc_sa/errno.c b/sys/lib/libc_sa/errno.c
index a6d74208b34..ff702b56334 100644
--- a/sys/lib/libc_sa/errno.c
+++ b/sys/lib/libc_sa/errno.c
@@ -1,5 +1,3 @@
-/*
- * $Id: errno.c,v 1.1 1993/10/13 11:16:22 cgd Exp $
- */
+/* $NetBSD: errno.c,v 1.2 1994/10/26 05:36:49 cgd Exp $ */
int errno;
diff --git a/sys/lib/libc_sa/memset.c b/sys/lib/libc_sa/memset.c
index 2e0b04dcb15..1a3cd569aa1 100644
--- a/sys/lib/libc_sa/memset.c
+++ b/sys/lib/libc_sa/memset.c
@@ -35,8 +35,10 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)memset.c 5.6 (Berkeley) 1/26/91";*/
-static char *rcsid = "$Id: memset.c,v 1.1 1993/10/13 11:16:23 cgd Exp $";
+#ifdef notdef
+static char *sccsid = "@(#)memset.c 5.6 (Berkeley) 1/26/91";
+#endif
+static char *rcsid = "$NetBSD: memset.c,v 1.2 1994/10/26 05:36:51 cgd Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/cdefs.h>
diff --git a/sys/lib/libc_sa/printf.c b/sys/lib/libc_sa/printf.c
index 826b0e3387f..26a66840f9e 100644
--- a/sys/lib/libc_sa/printf.c
+++ b/sys/lib/libc_sa/printf.c
@@ -1,3 +1,5 @@
+/* $NetBSD: printf.c,v 1.2 1994/10/26 05:36:52 cgd Exp $ */
+
/*-
* Copyright (c) 1991 The Regents of the University of California.
* All rights reserved.
@@ -30,8 +32,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * from: @(#)printf.c 5.6 (Berkeley) 5/25/91
- * $Id: printf.c,v 1.1 1993/10/13 11:16:24 cgd Exp $
+ * @(#)printf.c 5.6 (Berkeley) 5/25/91
*/
/*
diff --git a/sys/lib/libc_sa/salibc.h b/sys/lib/libc_sa/salibc.h
index fd381f9c84e..664d7cde3b0 100644
--- a/sys/lib/libc_sa/salibc.h
+++ b/sys/lib/libc_sa/salibc.h
@@ -1,6 +1,4 @@
-/*
- * $Id: salibc.h,v 1.1 1993/10/16 07:32:22 cgd Exp $
- */
+/* $NetBSD: salibc.h,v 1.2 1994/10/26 05:36:54 cgd Exp $ */
#include <sys/types.h>
diff --git a/sys/lib/libc_sa/strerror.c b/sys/lib/libc_sa/strerror.c
index efb2ffc5ab7..915535fda86 100644
--- a/sys/lib/libc_sa/strerror.c
+++ b/sys/lib/libc_sa/strerror.c
@@ -1,6 +1,4 @@
-/*
- * $Id: strerror.c,v 1.1 1993/10/13 11:16:25 cgd Exp $
- */
+/* $NetBSD: strerror.c,v 1.2 1994/10/26 05:36:55 cgd Exp $ */
#include <sys/errno.h>