mirror of
https://github.com/kenshineto/kern.git
synced 2025-04-16 23:47:25 +00:00
14 lines
189 B
C
14 lines
189 B
C
/**
|
|
* @file paging.h
|
|
*
|
|
* @author Freya Murphy <freya@freyacat.org>
|
|
*
|
|
* 64-bit paging functions
|
|
*/
|
|
|
|
#ifndef PAGING_H_
|
|
#define PAGING_H_
|
|
|
|
void paging_init(void);
|
|
|
|
#endif /* paging.h */
|