diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-10-22 14:53:17 +0000 | 
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-10-22 14:53:17 +0000 | 
| commit | 88640ee1259d49e4edae19589d66834ef6769638 (patch) | |
| tree | b9aca5a0c06480f3a5d847541c82ee74d517c673 /lib/libc/stdlib | |
| parent | c0d41487f2731c71b5c22f13bcfaa73558886cfa (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdlib')
| -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 e56e7e97d6b1..690bdf5e48eb 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 0b50ce020fdd..9349d0ab424b 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>  | 
