aboutsummaryrefslogtreecommitdiff
path: root/release/picobsd/tinyware/vm/vm.c
diff options
context:
space:
mode:
authorDoug White <dwhite@FreeBSD.org>1999-08-22 21:45:24 +0000
committerDoug White <dwhite@FreeBSD.org>1999-08-22 21:45:24 +0000
commit843fcabd9e990311f671867d37541fdc069c7e90 (patch)
treed899abcbd5f26e22445df9dfccd04489b7c7a17f /release/picobsd/tinyware/vm/vm.c
parent2237f6ec54913903503ff99429037da706cdd65a (diff)
downloadsrc-843fcabd9e990311f671867d37541fdc069c7e90.tar.gz
src-843fcabd9e990311f671867d37541fdc069c7e90.zip
Major PicoBSD update by luigi with some debugging help from myself.
. Now builds on -STABLE (-CURRENT is broken due to bugs) . etc directory contents centralized instead of in each type directory (can exclude & override as desired) . Removed extraneous language files (lang files for rc really necessary?) . dialog-based build tool with support for custom floppy builds . MFS image loads as a mfs_root module instead of compiled into kernel THIS IS BROKEN ON CURRENT. I'll MFC to -STABLE immediately following. luigi tells me I have an OK from jkh on the MFC. Submitted by: luigi
Notes
Notes: svn path=/head/; revision=50186
Diffstat (limited to 'release/picobsd/tinyware/vm/vm.c')
-rw-r--r--release/picobsd/tinyware/vm/vm.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/release/picobsd/tinyware/vm/vm.c b/release/picobsd/tinyware/vm/vm.c
index 4babb246aafb..8e089d8916cf 100644
--- a/release/picobsd/tinyware/vm/vm.c
+++ b/release/picobsd/tinyware/vm/vm.c
@@ -26,14 +26,13 @@
* $Id: vm.c,v 1.2 1998/10/29 12:38:06 abial Exp $
*/
+#include <stdio.h>
#include <sys/types.h>
-#include <sys/param.h>
#include <sys/sysctl.h>
#include <sys/vmmeter.h>
-
#include <vm/vm_param.h>
-#include <stdio.h>
+#define pgtok(a) ((a) * (u_int) DEFAULT_PAGE_SIZE >> 10)
int
main(int argc, char *argv[])