xref: /minix/minix/servers/vm/memlist.h (revision 433d6423)
1 
2 #ifndef _MEMLIST_H
3 #define _MEMLIST_H 1
4 
5 struct memlist {
6 	struct memlist *next;
7 	phys_bytes	phys;	/* physical address of page */
8 };
9 
10 #endif
11