Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib More trailing white space.
details: https://anonhg.NetBSD.org/src/rev/8d586a907276
branches: trunk
changeset: 474275:8d586a907276
user: simonb <simonb%NetBSD.org@localhost>
date: Fri Jul 02 15:46:05 1999 +0000
description:
More trailing white space.
diffstat:
lib/csu/Makefile | 4 +-
lib/csu/arm32/c++rt0.c | 4 +-
lib/csu/arm32/crt0.c | 8 +-
lib/csu/c++/c++rt0.c | 4 +-
lib/csu/i386/crt0.c | 6 +-
lib/csu/mips/crt0.c | 8 +-
lib/csu/powerpc/crt0.c | 8 +-
lib/csu/sparc64/crt0.c | 6 +-
lib/libbz2/LICENSE | 12 +-
lib/libbz2/README | 8 +-
lib/libbz2/blocksort.c | 30 +-
lib/libbz2/bzlib.c | 224 +++++++++++++-------------
lib/libbz2/bzlib.h | 160 +++++++++---------
lib/libbz2/bzlib_private.h | 34 ++--
lib/libbz2/compress.c | 64 +++---
lib/libbz2/crctable.c | 12 +-
lib/libbz2/decompress.c | 56 +++---
lib/libbz2/huffman.c | 20 +-
lib/libbz2/manual.texi | 346 +++++++++++++++++++++---------------------
lib/libbz2/manual_1.html | 20 +-
lib/libbz2/manual_3.html | 264 ++++++++++++++++----------------
lib/libbz2/manual_4.html | 48 ++--
lib/libbz2/randtable.c | 116 +++++++-------
lib/libterm/termcap.3 | 4 +-
lib/libterm/termcap.c | 12 +-
lib/libterm/tgoto.c | 6 +-
lib/libusb/descr.c | 4 +-
lib/libusb/parse.c | 24 +-
lib/libusb/usage.c | 16 +-
lib/libusb/usb.3 | 12 +-
lib/libusb/usb.h | 4 +-
lib/libusb/usb_hid_usages | 46 ++--
lib/libutil/Makefile | 6 +-
lib/libutil/fparseln.3 | 18 +-
lib/libutil/fparseln.c | 12 +-
lib/libutil/getrawpartition.c | 6 +-
lib/libutil/opendisk.3 | 8 +-
lib/libutil/pty.c | 10 +-
lib/libutil/ttymsg.c | 6 +-
lib/libz/ChangeLog | 8 +-
lib/libz/README | 6 +-
lib/libz/adler32.c | 4 +-
lib/libz/algorithm.doc | 74 ++++----
lib/libz/compress.c | 4 +-
lib/libz/crc32.c | 6 +-
lib/libz/deflate.c | 12 +-
lib/libz/deflate.h | 6 +-
lib/libz/example.c | 6 +-
lib/libz/gzio.c | 20 +-
lib/libz/infblock.c | 6 +-
lib/libz/infblock.h | 4 +-
lib/libz/infcodes.c | 4 +-
lib/libz/infcodes.h | 4 +-
lib/libz/inffast.c | 4 +-
lib/libz/inffast.h | 4 +-
lib/libz/inflate.c | 6 +-
lib/libz/inftrees.c | 4 +-
lib/libz/inftrees.h | 4 +-
lib/libz/infutil.c | 4 +-
lib/libz/infutil.h | 6 +-
lib/libz/minigzip.c | 8 +-
lib/libz/trees.c | 6 +-
lib/libz/uncompr.c | 4 +-
lib/libz/zconf.h | 4 +-
lib/libz/zlib.h | 24 +-
lib/libz/zutil.c | 4 +-
66 files changed, 951 insertions(+), 951 deletions(-)
diffs (truncated from 5423 to 300 lines):
diff -r 43da459282f4 -r 8d586a907276 lib/csu/Makefile
--- a/lib/csu/Makefile Fri Jul 02 15:45:46 1999 +0000
+++ b/lib/csu/Makefile Fri Jul 02 15:46:05 1999 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.19 1999/03/19 22:58:04 thorpej Exp $
+# $NetBSD: Makefile,v 1.20 1999/07/02 15:53:54 simonb Exp $
.include <bsd.own.mk>
-.if ${OBJECT_FMT} == "ELF" && exists(${MACHINE_ARCH}_elf)
+.if ${OBJECT_FMT} == "ELF" && exists(${MACHINE_ARCH}_elf)
SUBDIR= ${MACHINE_ARCH}_elf
.else
SUBDIR= ${MACHINE_ARCH:C/mipse[bl]/mips/}
diff -r 43da459282f4 -r 8d586a907276 lib/csu/arm32/c++rt0.c
--- a/lib/csu/arm32/c++rt0.c Fri Jul 02 15:45:46 1999 +0000
+++ b/lib/csu/arm32/c++rt0.c Fri Jul 02 15:46:05 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: c++rt0.c,v 1.1 1999/02/27 03:28:30 tv Exp $ */
+/* $NetBSD: c++rt0.c,v 1.2 1999/07/02 15:53:55 simonb Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -83,7 +83,7 @@
{
unsigned long i = (unsigned long) __DTOR_LIST__[0];
void (**p)(void) = __DTOR_LIST__ + i;
-
+
while (i--)
#ifdef ARM32_BROKEN_RELOCATIONS /* XXX ARM32_BROKEN_RELOCATIONS */
(*(void (*)(void))((char *)(*p--) + base))(); /* XXX ... */
diff -r 43da459282f4 -r 8d586a907276 lib/csu/arm32/crt0.c
--- a/lib/csu/arm32/crt0.c Fri Jul 02 15:45:46 1999 +0000
+++ b/lib/csu/arm32/crt0.c Fri Jul 02 15:46:05 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: crt0.c,v 1.8 1999/01/22 11:45:16 mycroft Exp $ */
+/* $NetBSD: crt0.c,v 1.9 1999/07/02 15:53:55 simonb Exp $ */
/*
* Copyright (C) 1997 Mark Brinicombe
@@ -39,7 +39,7 @@
#undef mmap
#define mmap(addr, len, prot, flags, fd, off) \
__syscall(SYS_mmap, (addr), (len), (prot), (flags), \
- (fd), 0, (off_t)(off))
+ (fd), 0, (off_t)(off))
extern void start __P((void)) asm("start");
void __start __P((int, char *[], char *[]));
@@ -61,7 +61,7 @@
add r2, r1, r0, lsl #2
add r2, r2, #0x0004
- b ___start
+ b ___start
.align 0
Lps_strings:
@@ -69,7 +69,7 @@
");
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: crt0.c,v 1.8 1999/01/22 11:45:16 mycroft Exp $");
+__RCSID("$NetBSD: crt0.c,v 1.9 1999/07/02 15:53:55 simonb Exp $");
#endif /* LIBC_SCCS and not lint */
void
diff -r 43da459282f4 -r 8d586a907276 lib/csu/c++/c++rt0.c
--- a/lib/csu/c++/c++rt0.c Fri Jul 02 15:45:46 1999 +0000
+++ b/lib/csu/c++/c++rt0.c Fri Jul 02 15:46:05 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: c++rt0.c,v 1.8 1998/09/05 13:25:07 pk Exp $ */
+/* $NetBSD: c++rt0.c,v 1.9 1999/07/02 15:53:55 simonb Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -69,7 +69,7 @@
{
unsigned long i = (unsigned long) __DTOR_LIST__[0];
void (**p)(void) = __DTOR_LIST__ + i;
-
+
while (i--)
(**p--)();
}
diff -r 43da459282f4 -r 8d586a907276 lib/csu/i386/crt0.c
--- a/lib/csu/i386/crt0.c Fri Jul 02 15:45:46 1999 +0000
+++ b/lib/csu/i386/crt0.c Fri Jul 02 15:46:05 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: crt0.c,v 1.31 1999/01/22 11:29:16 mycroft Exp $ */
+/* $NetBSD: crt0.c,v 1.32 1999/07/02 15:53:55 simonb Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -57,9 +57,9 @@
pushl %eax
call ___start
");
-
+
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: crt0.c,v 1.31 1999/01/22 11:29:16 mycroft Exp $");
+__RCSID("$NetBSD: crt0.c,v 1.32 1999/07/02 15:53:55 simonb Exp $");
#endif /* LIBC_SCCS and not lint */
void
diff -r 43da459282f4 -r 8d586a907276 lib/csu/mips/crt0.c
--- a/lib/csu/mips/crt0.c Fri Jul 02 15:45:46 1999 +0000
+++ b/lib/csu/mips/crt0.c Fri Jul 02 15:46:05 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: crt0.c,v 1.14 1999/03/20 00:13:51 thorpej Exp $ */
+/* $NetBSD: crt0.c,v 1.15 1999/07/02 15:53:55 simonb Exp $ */
/*
* Copyright (c) 1995 Christopher G. Demetriou
@@ -73,7 +73,7 @@
* Layout of stuff on the stack:
*
* [ high ]
- * char kenvstr[1]; // size varies
+ * char kenvstr[1]; // size varies
* char kargstr[1]; // size varies
* char *argv[1]; // varies on argc
* int argc;
@@ -102,7 +102,7 @@
* frame size. If you change the code or compiler,
* you _will_ lose!
*/
-
+
#ifndef DYNAMIC
/* XXX 56 is compiler and stackframe dependent */
__asm __volatile(" addiu %0,$29,56" : "=r" (ksp));
@@ -158,7 +158,7 @@
* is the entrypoint. (Only needed for old toolchains).
*/
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: crt0.c,v 1.14 1999/03/20 00:13:51 thorpej Exp $");
+__RCSID("$NetBSD: crt0.c,v 1.15 1999/07/02 15:53:55 simonb Exp $");
#endif /* LIBC_SCCS and not lint */
#include "common.c"
diff -r 43da459282f4 -r 8d586a907276 lib/csu/powerpc/crt0.c
--- a/lib/csu/powerpc/crt0.c Fri Jul 02 15:45:46 1999 +0000
+++ b/lib/csu/powerpc/crt0.c Fri Jul 02 15:46:05 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: crt0.c,v 1.14 1999/03/20 00:13:51 thorpej Exp $ */
+/* $NetBSD: crt0.c,v 1.15 1999/07/02 15:53:55 simonb Exp $ */
/*
* Copyright (c) 1995 Christopher G. Demetriou
@@ -80,11 +80,11 @@
exit(main(argc, argv, environ));
}
-/*
+/*
* NOTE: Leave the RCS ID _after_ __start(), in case it gets placed in .text.
- */
+ */
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: crt0.c,v 1.14 1999/03/20 00:13:51 thorpej Exp $");
+__RCSID("$NetBSD: crt0.c,v 1.15 1999/07/02 15:53:55 simonb Exp $");
#endif /* LIBC_SCCS and not lint */
#include "common.c"
diff -r 43da459282f4 -r 8d586a907276 lib/csu/sparc64/crt0.c
--- a/lib/csu/sparc64/crt0.c Fri Jul 02 15:45:46 1999 +0000
+++ b/lib/csu/sparc64/crt0.c Fri Jul 02 15:46:05 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: crt0.c,v 1.7 1999/03/20 00:13:51 thorpej Exp $ */
+/* $NetBSD: crt0.c,v 1.8 1999/07/02 15:53:56 simonb Exp $ */
/*
* Copyright (c) 1995 Christopher G. Demetriou
@@ -109,7 +109,7 @@
* NOTE: Leave the RCS ID _after_ _start(), in case it gets placed in .text.
*/
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: crt0.c,v 1.7 1999/03/20 00:13:51 thorpej Exp $");
+__RCSID("$NetBSD: crt0.c,v 1.8 1999/07/02 15:53:56 simonb Exp $");
#endif /* LIBC_SCCS and not lint */
/* XXX XXX XXX THIS SHOULD GO AWAY XXX XXX XXX
@@ -128,7 +128,7 @@
#endif
void
-__init()
+__init()
{
}
diff -r 43da459282f4 -r 8d586a907276 lib/libbz2/LICENSE
--- a/lib/libbz2/LICENSE Fri Jul 02 15:45:46 1999 +0000
+++ b/lib/libbz2/LICENSE Fri Jul 02 15:46:05 1999 +0000
@@ -9,16 +9,16 @@
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
-2. The origin of this software must not be misrepresented; you must
- not claim that you wrote the original software. If you use this
- software in a product, an acknowledgment in the product
+2. The origin of this software must not be misrepresented; you must
+ not claim that you wrote the original software. If you use this
+ software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
3. Altered source versions must be plainly marked as such, and must
not be misrepresented as being the original software.
-4. The name of the author may not be used to endorse or promote
- products derived from this software without specific prior written
+4. The name of the author may not be used to endorse or promote
+ products derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
@@ -37,4 +37,4 @@
jseward%acm.org@localhost
bzip2/libbzip2 version 0.9.0 of 28 June 1998
-$NetBSD: LICENSE,v 1.2 1998/09/14 03:13:53 ross Exp $
+$NetBSD: LICENSE,v 1.3 1999/07/02 15:55:41 simonb Exp $
diff -r 43da459282f4 -r 8d586a907276 lib/libbz2/README
--- a/lib/libbz2/README Fri Jul 02 15:45:46 1999 +0000
+++ b/lib/libbz2/README Fri Jul 02 15:46:05 1999 +0000
@@ -1,4 +1,4 @@
-$NetBSD: README,v 1.2 1998/09/14 03:13:53 ross Exp $
+$NetBSD: README,v 1.3 1999/07/02 15:55:41 simonb Exp $
This is the README for bzip2, a block-sorting file compressor, version
@@ -26,7 +26,7 @@
To install bzip2 properly:
-* Copy the binaries "bzip2" and "bzip2recover" to a publically visible
+* Copy the binaries "bzip2" and "bzip2recover" to a publically visible
place, possibly /usr/bin or /usr/local/bin.
* In that directory, make "bunzip2" and "bzcat" be symbolic links
@@ -37,7 +37,7 @@
If you want to program with the library, you'll need to copy libbz2.a
and bzlib.h to /usr/lib and /usr/include respectively.
-
+
HOW TO BUILD -- Windows 95, NT, DOS, Mac, etc.
@@ -121,7 +121,7 @@
bzip-0.21 and bzip2-0.1pl2, and the changes in bzip2 are largely a
result of this feedback. I thank you for your comments.
-At least for the time being, bzip2's "home" is
+At least for the time being, bzip2's "home" is
http://www.muraroa.demon.co.uk.
Julian Seward
diff -r 43da459282f4 -r 8d586a907276 lib/libbz2/blocksort.c
--- a/lib/libbz2/blocksort.c Fri Jul 02 15:45:46 1999 +0000
+++ b/lib/libbz2/blocksort.c Fri Jul 02 15:46:05 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: blocksort.c,v 1.2 1998/09/14 03:08:17 ross Exp $ */
+/* $NetBSD: blocksort.c,v 1.3 1999/07/02 15:55:41 simonb Exp $ */
/*-------------------------------------------------------------*/
/*--- Block sorting machinery ---*/
@@ -18,16 +18,16 @@
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
- 2. The origin of this software must not be misrepresented; you must
- not claim that you wrote the original software. If you use this
- software in a product, an acknowledgment in the product
+ 2. The origin of this software must not be misrepresented; you must
+ not claim that you wrote the original software. If you use this
+ software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
3. Altered source versions must be plainly marked as such, and must
not be misrepresented as being the original software.
- 4. The name of the author may not be used to endorse or promote
- products derived from this software without specific prior written
+ 4. The name of the author may not be used to endorse or promote
+ products derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
@@ -75,8 +75,8 @@
static __inline__ Bool fullGtU ( UChar* block,
UInt16* quadrant,
UInt32 nblock,
- Int32* workDone,
- Int32 i1,
+ Int32* workDone,
+ Int32 i1,
Home |
Main Index |
Thread Index |
Old Index