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