11 lines
142 B
C
11 lines
142 B
C
|
|
||
|
#ifndef _MEMLIST_H
|
||
|
#define _MEMLIST_H 1
|
||
|
|
||
|
struct memlist {
|
||
|
struct memlist *next;
|
||
|
phys_bytes phys; /* physical address of page */
|
||
|
};
|
||
|
|
||
|
#endif
|