diff options
author | peter <peter@FreeBSD.org> | 2000-09-03 11:29:18 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-09-03 11:29:18 +0000 |
commit | fc5face4942698aeb5250d1ef60ec5128e8c66e7 (patch) | |
tree | 919d8887faac3f307027452112bb771319b8f6bc | |
parent | 1ea926e93d79bf4e3ce719a70f2f95901226ab9f (diff) | |
download | FreeBSD-src-fc5face4942698aeb5250d1ef60ec5128e8c66e7.zip FreeBSD-src-fc5face4942698aeb5250d1ef60ec5128e8c66e7.tar.gz |
Make libstand compile
-rw-r--r-- | lib/libstand/bcd.c | 4 | ||||
-rw-r--r-- | lib/libstand/random.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/libstand/bcd.c b/lib/libstand/bcd.c index 540ed5f..296c8e9 100644 --- a/lib/libstand/bcd.c +++ b/lib/libstand/bcd.c @@ -1,9 +1,11 @@ /* * Some data-tables that are often used. * Cannot be copyrighted. + * + * $FreeBSD$ */ -#include <sys/libkern.h> +#include <sys/types.h> u_char const bcd2bin_data[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, diff --git a/lib/libstand/random.c b/lib/libstand/random.c index 35ddea1..13af195 100644 --- a/lib/libstand/random.c +++ b/lib/libstand/random.c @@ -34,7 +34,7 @@ * $FreeBSD$ */ -#include <sys/libkern.h> +#include <sys/types.h> static u_long randseed = 1; |