All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m21s
9 lines
121 B
C
9 lines
121 B
C
#ifndef _PAGE_SIZE_H
|
|
#define _PAGE_SIZE_H
|
|
|
|
#if defined(__x86_64__)
|
|
#define PAGE_SIZE 4096
|
|
#endif
|
|
|
|
#endif // _PAGE_SIZE_H
|