lightrec: implement clock cache clear on cycle_multiplier change
[pcsx_rearmed.git] / libpcsxcore / lightrec / sysconf.c
1 #include <errno.h>
2 #include <unistd.h>
3
4 /* Implement the sysconf() symbol which is needed by GNU Lightning */
5 long sysconf(int name)
6 {
7         switch (name) {
8         case _SC_PAGE_SIZE:
9                 return 4096;
10         default:
11                 return -EINVAL;
12         }
13 }