diff options
author | phk <phk@FreeBSD.org> | 1995-10-22 14:53:17 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-10-22 14:53:17 +0000 |
commit | d06fcfa2c54b374b83fb8e28c5e6cfc7b8a32ab4 (patch) | |
tree | b9aca5a0c06480f3a5d847541c82ee74d517c673 /lib | |
parent | d271416c7b484596bc5f9ce55a75f3dc9928bd6c (diff) | |
download | FreeBSD-src-d06fcfa2c54b374b83fb8e28c5e6cfc7b8a32ab4.zip FreeBSD-src-d06fcfa2c54b374b83fb8e28c5e6cfc7b8a32ab4.tar.gz |
Mino cleanup, #includes & unused vars.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/stdlib/abort.c | 2 | ||||
-rw-r--r-- | lib/libc/stdlib/strhash.c | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lib/libc/stdlib/abort.c b/lib/libc/stdlib/abort.c index e56e7e9..690bdf5 100644 --- a/lib/libc/stdlib/abort.c +++ b/lib/libc/stdlib/abort.c @@ -35,7 +35,7 @@ static char sccsid[] = "@(#)abort.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ -#include <sys/signal.h> +#include <signal.h> #include <stdlib.h> #include <stddef.h> #include <unistd.h> diff --git a/lib/libc/stdlib/strhash.c b/lib/libc/stdlib/strhash.c index 0b50ce0..9349d0a 100644 --- a/lib/libc/stdlib/strhash.c +++ b/lib/libc/stdlib/strhash.c @@ -1,5 +1,5 @@ #ifndef lint -static char *rcsid = "$Header: /home/ncvs/src/lib/libc/stdlib/strhash.c,v 1.3 1995/03/28 08:41:02 jkh Exp $"; +static char *rcsid = "$Header: /home/ncvs/src/lib/libc/stdlib/strhash.c,v 1.4 1995/05/30 05:41:55 rgrimes Exp $"; #endif /* @@ -37,6 +37,9 @@ static char *rcsid = "$Header: /home/ncvs/src/lib/libc/stdlib/strhash.c,v 1.3 19 /* * $Log: strhash.c,v $ + * Revision 1.4 1995/05/30 05:41:55 rgrimes + * Remove trailing whitespace. + * * Revision 1.3 1995/03/28 08:41:02 jkh * Fix a missing _hash() to prevent namespace pollution with the db/hash routines. * Grrr. If the dbhash routines weren't grossly overengineered I wouldn't @@ -94,6 +97,7 @@ static char *rcsid = "$Header: /home/ncvs/src/lib/libc/stdlib/strhash.c,v 1.3 19 #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <sys/types.h> #include <strhash.h> |