mirror of
https://github.com/QingdaoU/Judger.git
synced 2025-01-04 11:21:42 +00:00
9 lines
144 B
C
9 lines
144 B
C
// maybe used in qsort function
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
printf("%ld", sysconf(_SC_PAGE_SIZE));
|
|
return 0;
|
|
}
|