Files
Limine/common/mm/mtrr.h
cospplredman ba5c0004e6 fixed header guard names
made them more standard compliant
2024-03-20 03:06:55 +01:00

12 lines
154 B
C

#ifndef MM__MTRR_H__
#define MM__MTRR_H__
#if defined (__x86_64__) || defined (__i386__)
void mtrr_save(void);
void mtrr_restore(void);
#endif
#endif