diff options
Diffstat (limited to 'lib/libc/stdio')
69 files changed, 69 insertions, 285 deletions
diff --git a/lib/libc/stdio/asprintf.c b/lib/libc/stdio/asprintf.c index 784a19ff514..7de0bc52ce0 100644 --- a/lib/libc/stdio/asprintf.c +++ b/lib/libc/stdio/asprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: asprintf.c,v 1.13 2005/05/28 00:54:50 millert Exp $ */ +/* $OpenBSD: asprintf.c,v 1.14 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> @@ -16,10 +16,6 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: asprintf.c,v 1.13 2005/05/28 00:54:50 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <stdlib.h> #include <errno.h> diff --git a/lib/libc/stdio/clrerr.c b/lib/libc/stdio/clrerr.c index df1555c53d6..20f19945193 100644 --- a/lib/libc/stdio/clrerr.c +++ b/lib/libc/stdio/clrerr.c @@ -1,3 +1,4 @@ +/* $OpenBSD: clrerr.c,v 1.6 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: clrerr.c,v 1.5 2004/09/28 18:12:43 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #undef clearerr diff --git a/lib/libc/stdio/fclose.c b/lib/libc/stdio/fclose.c index 9ee69664382..bdf6e52fc77 100644 --- a/lib/libc/stdio/fclose.c +++ b/lib/libc/stdio/fclose.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fclose.c,v 1.6 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fclose.c,v 1.5 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <errno.h> #include <stdio.h> #include <stdlib.h> diff --git a/lib/libc/stdio/fdopen.c b/lib/libc/stdio/fdopen.c index a5b5fc4852e..1df609c63c9 100644 --- a/lib/libc/stdio/fdopen.c +++ b/lib/libc/stdio/fdopen.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fdopen.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fdopen.c,v 1.4 2004/09/28 18:12:43 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <fcntl.h> #include <unistd.h> diff --git a/lib/libc/stdio/feof.c b/lib/libc/stdio/feof.c index 34d36d53caa..eb742da7efd 100644 --- a/lib/libc/stdio/feof.c +++ b/lib/libc/stdio/feof.c @@ -1,3 +1,4 @@ +/* $OpenBSD: feof.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: feof.c,v 1.4 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> /* diff --git a/lib/libc/stdio/ferror.c b/lib/libc/stdio/ferror.c index 0057c284721..0d2cf01a1bc 100644 --- a/lib/libc/stdio/ferror.c +++ b/lib/libc/stdio/ferror.c @@ -1,3 +1,4 @@ +/* $OpenBSD: ferror.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: ferror.c,v 1.4 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> /* diff --git a/lib/libc/stdio/fflush.c b/lib/libc/stdio/fflush.c index f6f5c1fdf6d..3f72ad8d99b 100644 --- a/lib/libc/stdio/fflush.c +++ b/lib/libc/stdio/fflush.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fflush.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fflush.c,v 1.4 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <errno.h> #include <stdio.h> #include "local.h" diff --git a/lib/libc/stdio/fgetc.c b/lib/libc/stdio/fgetc.c index 09d11735728..53e2948813e 100644 --- a/lib/libc/stdio/fgetc.c +++ b/lib/libc/stdio/fgetc.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fgetc.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fgetc.c,v 1.4 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> int diff --git a/lib/libc/stdio/fgetln.c b/lib/libc/stdio/fgetln.c index f001243cfbf..f97cfb97e60 100644 --- a/lib/libc/stdio/fgetln.c +++ b/lib/libc/stdio/fgetln.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fgetln.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: fgetln.c,v 1.6 2005/05/28 04:34:05 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/lib/libc/stdio/fgetpos.c b/lib/libc/stdio/fgetpos.c index ace447a31da..e6188e5a6b1 100644 --- a/lib/libc/stdio/fgetpos.c +++ b/lib/libc/stdio/fgetpos.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fgetpos.c,v 1.6 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fgetpos.c,v 1.5 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> /* diff --git a/lib/libc/stdio/fgets.c b/lib/libc/stdio/fgets.c index 9aef535baeb..92fdcf78ff5 100644 --- a/lib/libc/stdio/fgets.c +++ b/lib/libc/stdio/fgets.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fgets.c,v 1.10 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fgets.c,v 1.9 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <string.h> #include "local.h" diff --git a/lib/libc/stdio/fgetws.c b/lib/libc/stdio/fgetws.c index f70b43707fd..783ff919b09 100644 --- a/lib/libc/stdio/fgetws.c +++ b/lib/libc/stdio/fgetws.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fgetws.c,v 1.1 2005/06/17 20:40:32 espie Exp $ */ +/* $OpenBSD: fgetws.c,v 1.2 2005/08/08 08:05:36 espie Exp $ */ /* $NetBSD: fgetws.c,v 1.1 2003/03/07 07:11:37 tshiozak Exp $ */ /*- @@ -31,10 +31,6 @@ * */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fgetws.c,v 1.1 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <errno.h> #include <stdio.h> #include <wchar.h> diff --git a/lib/libc/stdio/fileno.c b/lib/libc/stdio/fileno.c index 04e757f3119..0fd985b23e7 100644 --- a/lib/libc/stdio/fileno.c +++ b/lib/libc/stdio/fileno.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fileno.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fileno.c,v 1.4 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> /* diff --git a/lib/libc/stdio/findfp.c b/lib/libc/stdio/findfp.c index b6770c0c94c..27d19843208 100644 --- a/lib/libc/stdio/findfp.c +++ b/lib/libc/stdio/findfp.c @@ -1,3 +1,4 @@ +/* $OpenBSD: findfp.c,v 1.9 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: findfp.c,v 1.8 2005/08/02 08:59:47 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <unistd.h> #include <stdio.h> diff --git a/lib/libc/stdio/flags.c b/lib/libc/stdio/flags.c index d00fe737767..36f8410a293 100644 --- a/lib/libc/stdio/flags.c +++ b/lib/libc/stdio/flags.c @@ -1,3 +1,4 @@ +/* $OpenBSD: flags.c,v 1.6 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: flags.c,v 1.5 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/file.h> #include <stdio.h> diff --git a/lib/libc/stdio/fopen.c b/lib/libc/stdio/fopen.c index 1b49db2bf50..b063e4545f8 100644 --- a/lib/libc/stdio/fopen.c +++ b/lib/libc/stdio/fopen.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fopen.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fopen.c,v 1.4 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> diff --git a/lib/libc/stdio/fprintf.c b/lib/libc/stdio/fprintf.c index 22310d106d0..7415b2fca39 100644 --- a/lib/libc/stdio/fprintf.c +++ b/lib/libc/stdio/fprintf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fprintf.c,v 1.6 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fprintf.c,v 1.5 2003/06/02 20:18:37 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <stdarg.h> diff --git a/lib/libc/stdio/fpurge.c b/lib/libc/stdio/fpurge.c index e928c73b016..fa0213ac7b7 100644 --- a/lib/libc/stdio/fpurge.c +++ b/lib/libc/stdio/fpurge.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fpurge.c,v 1.6 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fpurge.c,v 1.5 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <errno.h> #include <stdio.h> #include <stdlib.h> diff --git a/lib/libc/stdio/fputc.c b/lib/libc/stdio/fputc.c index f64dfd4d60a..2a6e7b7456f 100644 --- a/lib/libc/stdio/fputc.c +++ b/lib/libc/stdio/fputc.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fputc.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fputc.c,v 1.6 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <errno.h> #include "local.h" diff --git a/lib/libc/stdio/fputs.c b/lib/libc/stdio/fputs.c index ffb0df788ba..7434ca86d64 100644 --- a/lib/libc/stdio/fputs.c +++ b/lib/libc/stdio/fputs.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fputs.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fputs.c,v 1.6 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <string.h> #include "local.h" diff --git a/lib/libc/stdio/fputws.c b/lib/libc/stdio/fputws.c index f6aa2366e2a..a54ee669608 100644 --- a/lib/libc/stdio/fputws.c +++ b/lib/libc/stdio/fputws.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fputws.c,v 1.1 2005/06/17 20:40:32 espie Exp $ */ +/* $OpenBSD: fputws.c,v 1.2 2005/08/08 08:05:36 espie Exp $ */ /* $NetBSD: fputws.c,v 1.1 2003/03/07 07:11:37 tshiozak Exp $ */ /*- @@ -30,10 +30,6 @@ * FreeBSD: src/lib/libc/stdio/fputws.c,v 1.4 2002/09/20 13:25:40 tjr Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fputws.c,v 1.1 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <errno.h> #include <stdio.h> #include <wchar.h> diff --git a/lib/libc/stdio/fread.c b/lib/libc/stdio/fread.c index d4b118514ac..62906216d8b 100644 --- a/lib/libc/stdio/fread.c +++ b/lib/libc/stdio/fread.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fread.c,v 1.6 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fread.c,v 1.5 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <string.h> #include "local.h" diff --git a/lib/libc/stdio/freopen.c b/lib/libc/stdio/freopen.c index 4667332b2d6..414d8108e63 100644 --- a/lib/libc/stdio/freopen.c +++ b/lib/libc/stdio/freopen.c @@ -1,3 +1,4 @@ +/* $OpenBSD: freopen.c,v 1.9 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: freopen.c,v 1.8 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> diff --git a/lib/libc/stdio/fscanf.c b/lib/libc/stdio/fscanf.c index 2094d0a769b..8b4b49642e7 100644 --- a/lib/libc/stdio/fscanf.c +++ b/lib/libc/stdio/fscanf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fscanf.c,v 1.8 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fscanf.c,v 1.7 2005/03/31 18:36:29 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <stdarg.h> diff --git a/lib/libc/stdio/fseek.c b/lib/libc/stdio/fseek.c index af9463a2cbb..4f5014d6e0c 100644 --- a/lib/libc/stdio/fseek.c +++ b/lib/libc/stdio/fseek.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fseek.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fseek.c,v 1.6 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> diff --git a/lib/libc/stdio/fsetpos.c b/lib/libc/stdio/fsetpos.c index ccf349d3024..9624fe56542 100644 --- a/lib/libc/stdio/fsetpos.c +++ b/lib/libc/stdio/fsetpos.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fsetpos.c,v 1.6 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fsetpos.c,v 1.5 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> /* diff --git a/lib/libc/stdio/ftell.c b/lib/libc/stdio/ftell.c index c511706bb78..b7d449e187d 100644 --- a/lib/libc/stdio/ftell.c +++ b/lib/libc/stdio/ftell.c @@ -1,3 +1,4 @@ +/* $OpenBSD: ftell.c,v 1.6 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: ftell.c,v 1.5 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <errno.h> #include "local.h" diff --git a/lib/libc/stdio/funopen.c b/lib/libc/stdio/funopen.c index fd0496c43da..b85ee96a1f7 100644 --- a/lib/libc/stdio/funopen.c +++ b/lib/libc/stdio/funopen.c @@ -1,3 +1,4 @@ +/* $OpenBSD: funopen.c,v 1.8 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: funopen.c,v 1.7 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <errno.h> #include "local.h" diff --git a/lib/libc/stdio/fvwrite.c b/lib/libc/stdio/fvwrite.c index 474bea8e299..e70ff3490ad 100644 --- a/lib/libc/stdio/fvwrite.c +++ b/lib/libc/stdio/fvwrite.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fvwrite.c,v 1.14 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fvwrite.c,v 1.13 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/lib/libc/stdio/fwalk.c b/lib/libc/stdio/fwalk.c index 41d18a80261..5606cf1e002 100644 --- a/lib/libc/stdio/fwalk.c +++ b/lib/libc/stdio/fwalk.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fwalk.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fwalk.c,v 1.6 2005/03/30 19:59:03 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <errno.h> #include <stdio.h> #include "local.h" diff --git a/lib/libc/stdio/fwrite.c b/lib/libc/stdio/fwrite.c index 83574b47156..8a508dcdba7 100644 --- a/lib/libc/stdio/fwrite.c +++ b/lib/libc/stdio/fwrite.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fwrite.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fwrite.c,v 1.4 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include "local.h" #include "fvwrite.h" diff --git a/lib/libc/stdio/getc.c b/lib/libc/stdio/getc.c index 391c5dc6a2a..cdd572215bd 100644 --- a/lib/libc/stdio/getc.c +++ b/lib/libc/stdio/getc.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getc.c,v 1.6 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: getc.c,v 1.5 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> /* diff --git a/lib/libc/stdio/getchar.c b/lib/libc/stdio/getchar.c index e5a72d7a74e..550817de028 100644 --- a/lib/libc/stdio/getchar.c +++ b/lib/libc/stdio/getchar.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getchar.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: getchar.c,v 1.6 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> /* diff --git a/lib/libc/stdio/gets.c b/lib/libc/stdio/gets.c index 341084c2ff1..004eb99f487 100644 --- a/lib/libc/stdio/gets.c +++ b/lib/libc/stdio/gets.c @@ -1,3 +1,4 @@ +/* $OpenBSD: gets.c,v 1.9 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: gets.c,v 1.8 2005/05/28 04:34:05 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> __warn_references(gets, diff --git a/lib/libc/stdio/getw.c b/lib/libc/stdio/getw.c index 2872c3c4df4..6bfb97eb9fd 100644 --- a/lib/libc/stdio/getw.c +++ b/lib/libc/stdio/getw.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getw.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: getw.c,v 1.4 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> int diff --git a/lib/libc/stdio/makebuf.c b/lib/libc/stdio/makebuf.c index fd06606b634..ebb34f7b865 100644 --- a/lib/libc/stdio/makebuf.c +++ b/lib/libc/stdio/makebuf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: makebuf.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: makebuf.c,v 1.6 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> diff --git a/lib/libc/stdio/mktemp.c b/lib/libc/stdio/mktemp.c index b3ad9af7fcd..5304723166f 100644 --- a/lib/libc/stdio/mktemp.c +++ b/lib/libc/stdio/mktemp.c @@ -1,3 +1,4 @@ +/* $OpenBSD: mktemp.c,v 1.19 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1987, 1993 * The Regents of the University of California. All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: mktemp.c,v 1.18 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> diff --git a/lib/libc/stdio/perror.c b/lib/libc/stdio/perror.c index e341805482e..8728718c5d5 100644 --- a/lib/libc/stdio/perror.c +++ b/lib/libc/stdio/perror.c @@ -1,3 +1,4 @@ +/* $OpenBSD: perror.c,v 1.8 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1988, 1993 * The Regents of the University of California. All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: perror.c,v 1.7 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/uio.h> #include <unistd.h> diff --git a/lib/libc/stdio/printf.c b/lib/libc/stdio/printf.c index 69d36fffc3a..614b4351548 100644 --- a/lib/libc/stdio/printf.c +++ b/lib/libc/stdio/printf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: printf.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: printf.c,v 1.6 2005/03/31 18:36:29 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <stdarg.h> diff --git a/lib/libc/stdio/putc.c b/lib/libc/stdio/putc.c index afeac63789f..925021549fb 100644 --- a/lib/libc/stdio/putc.c +++ b/lib/libc/stdio/putc.c @@ -1,3 +1,4 @@ +/* $OpenBSD: putc.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: putc.c,v 1.6 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <errno.h> #include "local.h" diff --git a/lib/libc/stdio/putchar.c b/lib/libc/stdio/putchar.c index 109ad19c622..233cdfd0268 100644 --- a/lib/libc/stdio/putchar.c +++ b/lib/libc/stdio/putchar.c @@ -1,3 +1,4 @@ +/* $OpenBSD: putchar.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: putchar.c,v 1.6 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #undef putchar_unlocked diff --git a/lib/libc/stdio/puts.c b/lib/libc/stdio/puts.c index 27acf84fab5..c6ecc24f1a8 100644 --- a/lib/libc/stdio/puts.c +++ b/lib/libc/stdio/puts.c @@ -1,3 +1,4 @@ +/* $OpenBSD: puts.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: puts.c,v 1.6 2005/03/31 18:36:29 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <string.h> #include "fvwrite.h" diff --git a/lib/libc/stdio/putw.c b/lib/libc/stdio/putw.c index 8bea9b55abd..12955fec848 100644 --- a/lib/libc/stdio/putw.c +++ b/lib/libc/stdio/putw.c @@ -1,3 +1,4 @@ +/* $OpenBSD: putw.c,v 1.6 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: putw.c,v 1.5 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include "fvwrite.h" diff --git a/lib/libc/stdio/refill.c b/lib/libc/stdio/refill.c index d94bb17e9c1..74b378e1488 100644 --- a/lib/libc/stdio/refill.c +++ b/lib/libc/stdio/refill.c @@ -1,3 +1,4 @@ +/* $OpenBSD: refill.c,v 1.8 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: refill.c,v 1.7 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <errno.h> #include <stdio.h> #include <stdlib.h> diff --git a/lib/libc/stdio/remove.c b/lib/libc/stdio/remove.c index 10c004930bd..d09d76f9df2 100644 --- a/lib/libc/stdio/remove.c +++ b/lib/libc/stdio/remove.c @@ -1,4 +1,4 @@ -/* $OpenBSD: remove.c,v 1.6 2004/09/28 18:12:44 otto Exp $ */ +/* $OpenBSD: remove.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -32,14 +32,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)remove.c 8.1 (Berkeley) 6/4/93"; -#else -static char rcsid[] = "$OpenBSD: remove.c,v 1.6 2004/09/28 18:12:44 otto Exp $"; -#endif -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <unistd.h> #include <sys/stat.h> diff --git a/lib/libc/stdio/rewind.c b/lib/libc/stdio/rewind.c index 3713c5dfdc3..28119b6a884 100644 --- a/lib/libc/stdio/rewind.c +++ b/lib/libc/stdio/rewind.c @@ -1,3 +1,4 @@ +/* $OpenBSD: rewind.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: rewind.c,v 1.4 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <errno.h> #include <stdio.h> diff --git a/lib/libc/stdio/rget.c b/lib/libc/stdio/rget.c index ecbb8b80c0b..4cd97cbe9a4 100644 --- a/lib/libc/stdio/rget.c +++ b/lib/libc/stdio/rget.c @@ -1,3 +1,4 @@ +/* $OpenBSD: rget.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: rget.c,v 1.6 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include "local.h" diff --git a/lib/libc/stdio/scanf.c b/lib/libc/stdio/scanf.c index 061ad3489ad..71194d04e7a 100644 --- a/lib/libc/stdio/scanf.c +++ b/lib/libc/stdio/scanf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: scanf.c,v 1.9 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: scanf.c,v 1.8 2005/05/11 18:39:19 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <stdarg.h> diff --git a/lib/libc/stdio/setbuf.c b/lib/libc/stdio/setbuf.c index a1b1630a5b2..883b89532b8 100644 --- a/lib/libc/stdio/setbuf.c +++ b/lib/libc/stdio/setbuf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: setbuf.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: setbuf.c,v 1.4 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include "local.h" diff --git a/lib/libc/stdio/setbuffer.c b/lib/libc/stdio/setbuffer.c index 3135b0ff73c..8725ff79558 100644 --- a/lib/libc/stdio/setbuffer.c +++ b/lib/libc/stdio/setbuffer.c @@ -1,3 +1,4 @@ +/* $OpenBSD: setbuffer.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: setbuffer.c,v 1.4 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> void diff --git a/lib/libc/stdio/setvbuf.c b/lib/libc/stdio/setvbuf.c index 3605e77e290..9b92bf08113 100644 --- a/lib/libc/stdio/setvbuf.c +++ b/lib/libc/stdio/setvbuf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: setvbuf.c,v 1.8 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: setvbuf.c,v 1.7 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <stdlib.h> #include "local.h" diff --git a/lib/libc/stdio/snprintf.c b/lib/libc/stdio/snprintf.c index 7291c08aa66..5f0a7349fc8 100644 --- a/lib/libc/stdio/snprintf.c +++ b/lib/libc/stdio/snprintf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: snprintf.c,v 1.13 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: snprintf.c,v 1.12 2005/05/28 00:54:50 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <limits.h> #include <stdio.h> #include <stdarg.h> diff --git a/lib/libc/stdio/sprintf.c b/lib/libc/stdio/sprintf.c index a2cb5819a4a..a31246c91db 100644 --- a/lib/libc/stdio/sprintf.c +++ b/lib/libc/stdio/sprintf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: sprintf.c,v 1.12 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: sprintf.c,v 1.11 2005/04/30 09:25:17 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <stdarg.h> #include <limits.h> diff --git a/lib/libc/stdio/sscanf.c b/lib/libc/stdio/sscanf.c index 4c1b8d83d78..a0bdf1c5262 100644 --- a/lib/libc/stdio/sscanf.c +++ b/lib/libc/stdio/sscanf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: sscanf.c,v 1.12 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: sscanf.c,v 1.11 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <string.h> #include <stdarg.h> diff --git a/lib/libc/stdio/stdio.c b/lib/libc/stdio/stdio.c index 2b3a25d6312..a4a27b53b64 100644 --- a/lib/libc/stdio/stdio.c +++ b/lib/libc/stdio/stdio.c @@ -1,3 +1,4 @@ +/* $OpenBSD: stdio.c,v 1.9 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: stdio.c,v 1.8 2005/03/31 18:36:29 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <fcntl.h> #include <unistd.h> #include <stdio.h> diff --git a/lib/libc/stdio/tempnam.c b/lib/libc/stdio/tempnam.c index 2c71e73b070..3b7ec75c702 100644 --- a/lib/libc/stdio/tempnam.c +++ b/lib/libc/stdio/tempnam.c @@ -1,3 +1,4 @@ +/* $OpenBSD: tempnam.c,v 1.14 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1988, 1993 * The Regents of the University of California. All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: tempnam.c,v 1.13 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <errno.h> #include <stdio.h> diff --git a/lib/libc/stdio/tmpfile.c b/lib/libc/stdio/tmpfile.c index 93459ec735a..8a1b7fb0628 100644 --- a/lib/libc/stdio/tmpfile.c +++ b/lib/libc/stdio/tmpfile.c @@ -1,3 +1,4 @@ +/* $OpenBSD: tmpfile.c,v 1.9 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: tmpfile.c,v 1.8 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> diff --git a/lib/libc/stdio/tmpnam.c b/lib/libc/stdio/tmpnam.c index a2f17dfe5ae..32e0a220202 100644 --- a/lib/libc/stdio/tmpnam.c +++ b/lib/libc/stdio/tmpnam.c @@ -1,3 +1,4 @@ +/* $OpenBSD: tmpnam.c,v 1.10 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: tmpnam.c,v 1.9 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <stdio.h> diff --git a/lib/libc/stdio/ungetc.c b/lib/libc/stdio/ungetc.c index 579ab2cd90d..fe05258a84e 100644 --- a/lib/libc/stdio/ungetc.c +++ b/lib/libc/stdio/ungetc.c @@ -1,3 +1,4 @@ +/* $OpenBSD: ungetc.c,v 1.9 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: ungetc.c,v 1.8 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/lib/libc/stdio/vasprintf.c b/lib/libc/stdio/vasprintf.c index f0145b9450c..77114bb1d1b 100644 --- a/lib/libc/stdio/vasprintf.c +++ b/lib/libc/stdio/vasprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vasprintf.c,v 1.10 2005/04/30 09:25:17 espie Exp $ */ +/* $OpenBSD: vasprintf.c,v 1.11 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> @@ -16,10 +16,6 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: vasprintf.c,v 1.10 2005/04/30 09:25:17 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <stdlib.h> #include <errno.h> diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index c99c8336efc..78c8b77a0d2 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: vfprintf.c,v 1.32 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: vfprintf.c,v 1.31 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - /* * Actual printf innards. * diff --git a/lib/libc/stdio/vfscanf.c b/lib/libc/stdio/vfscanf.c index cf184c6ef3e..0546c5c5145 100644 --- a/lib/libc/stdio/vfscanf.c +++ b/lib/libc/stdio/vfscanf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: vfscanf.c,v 1.15 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: vfscanf.c,v 1.14 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <stdlib.h> #include <ctype.h> diff --git a/lib/libc/stdio/vprintf.c b/lib/libc/stdio/vprintf.c index 304f5352672..42e01eaf5f1 100644 --- a/lib/libc/stdio/vprintf.c +++ b/lib/libc/stdio/vprintf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: vprintf.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: vprintf.c,v 1.6 2005/03/31 18:36:29 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> int diff --git a/lib/libc/stdio/vscanf.c b/lib/libc/stdio/vscanf.c index 898acc339d0..c14ed80b692 100644 --- a/lib/libc/stdio/vscanf.c +++ b/lib/libc/stdio/vscanf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: vscanf.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: vscanf.c,v 1.6 2005/05/11 18:39:19 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> int diff --git a/lib/libc/stdio/vsnprintf.c b/lib/libc/stdio/vsnprintf.c index 4efa3e636b4..d9fb7f8872c 100644 --- a/lib/libc/stdio/vsnprintf.c +++ b/lib/libc/stdio/vsnprintf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: vsnprintf.c,v 1.10 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: vsnprintf.c,v 1.9 2005/05/28 04:34:05 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <limits.h> #include <stdio.h> #include "local.h" diff --git a/lib/libc/stdio/vsprintf.c b/lib/libc/stdio/vsprintf.c index 958a12e8b67..91462fe1551 100644 --- a/lib/libc/stdio/vsprintf.c +++ b/lib/libc/stdio/vsprintf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: vsprintf.c,v 1.11 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: vsprintf.c,v 1.10 2005/04/30 09:25:17 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <limits.h> #include "local.h" diff --git a/lib/libc/stdio/vsscanf.c b/lib/libc/stdio/vsscanf.c index 7b6040a26b4..52b241751c7 100644 --- a/lib/libc/stdio/vsscanf.c +++ b/lib/libc/stdio/vsscanf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: vsscanf.c,v 1.10 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: vsscanf.c,v 1.9 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <string.h> #include "local.h" diff --git a/lib/libc/stdio/wbuf.c b/lib/libc/stdio/wbuf.c index 2f702668a92..c757799d47c 100644 --- a/lib/libc/stdio/wbuf.c +++ b/lib/libc/stdio/wbuf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: wbuf.c,v 1.9 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: wbuf.c,v 1.8 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <errno.h> #include "local.h" diff --git a/lib/libc/stdio/wsetup.c b/lib/libc/stdio/wsetup.c index efc7655f92f..083422365f6 100644 --- a/lib/libc/stdio/wsetup.c +++ b/lib/libc/stdio/wsetup.c @@ -1,3 +1,4 @@ +/* $OpenBSD: wsetup.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: wsetup.c,v 1.6 2004/09/28 18:12:44 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <stdlib.h> #include "local.h" |