mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
9 lines
193 B
C++
9 lines
193 B
C++
#include <stdio.h>
|
|
#include <Kernel/Syscall.h>
|
|
|
|
int main(int, char**)
|
|
{
|
|
int purged_page_count = syscall(SC_purge);
|
|
printf("Purged page count: %d\n", purged_page_count);
|
|
return 0;
|
|
}
|