nckernel  0.1
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
sysconf.c
Go to the documentation of this file.
1 #include <sys/types.h>
2 #include <stdio.h>
3 #include <stddef.h>
4 #include <stdint.h>
5 #include <unistd.h>
6 #include <limits.h>
7 
8 long sysconf(int name)
9 {
10  switch (name) {
11  case _SC_PAGESIZE:
12  return PAGESIZE;
13  default:
14  break;
15  }
16 
17  return -1;
18 }
19 
20 /* End of a file */