diff options
| author | Julian Elischer <julian@FreeBSD.org> | 2001-07-08 04:56:07 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 2001-07-08 04:56:07 +0000 |
| commit | 0b1ae8097d5753cc86391fd33f970ea49db54c03 (patch) | |
| tree | 3051a844ae5f32a737fef0e28618341231a0c500 /sys/libkern | |
| parent | a7ed41d61fb4e5d9f370fbd7a4067de173744c32 (diff) | |
Notes
Diffstat (limited to 'sys/libkern')
| -rw-r--r-- | sys/libkern/bsearch.c | 5 | ||||
| -rw-r--r-- | sys/libkern/quad.h | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/sys/libkern/bsearch.c b/sys/libkern/bsearch.c index 5b34500ed88d..6aceaa773959 100644 --- a/sys/libkern/bsearch.c +++ b/sys/libkern/bsearch.c @@ -37,8 +37,9 @@ static char sccsid[] = "@(#)bsearch.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ -#include <stddef.h> -#include <stdlib.h> +#include <sys/param.h> +#include <machine/ansi.h> +#include <sys/libkern.h> /* * Perform a binary search. diff --git a/sys/libkern/quad.h b/sys/libkern/quad.h index 730f08f30912..82cf052533e6 100644 --- a/sys/libkern/quad.h +++ b/sys/libkern/quad.h @@ -56,7 +56,8 @@ #include <sys/cdefs.h> #include <sys/types.h> -#include <limits.h> +#include <sys/syslimits.h> +#include <machine/limits.h> /* * Depending on the desired operation, we view a `long long' (aka quad_t) in |
