diff options
author | Mike Smith <msmith@FreeBSD.org> | 1998-11-04 00:29:33 +0000 |
---|---|---|
committer | Mike Smith <msmith@FreeBSD.org> | 1998-11-04 00:29:33 +0000 |
commit | cbb5c0dd582d1897d06671580d9469c9ba2a6ae1 (patch) | |
tree | 36815db3d36e0c550458a2473a09c180d5aaf914 /sys/boot/ficl/vm.c | |
parent | c7db92c026f1ecdd32f22a367d39b92722ba08f1 (diff) | |
download | src-cbb5c0dd582d1897d06671580d9469c9ba2a6ae1.tar.gz src-cbb5c0dd582d1897d06671580d9469c9ba2a6ae1.zip |
Make this work in the libstand environment; don't use stdio/stdlib headers.
Notes
Notes:
svn path=/head/; revision=40876
Diffstat (limited to 'sys/boot/ficl/vm.c')
-rw-r--r-- | sys/boot/ficl/vm.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/boot/ficl/vm.c b/sys/boot/ficl/vm.c index ebbe1c0f307c..3040ee47e2fa 100644 --- a/sys/boot/ficl/vm.c +++ b/sys/boot/ficl/vm.c @@ -13,11 +13,9 @@ ** of the interp. */ -#include <stdlib.h> -#include <stdio.h> +#include <stand.h> #include <stdarg.h> #include <string.h> -#include <ctype.h> #include "ficl.h" static char digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; |