nckernel
0.1
Main Page
Related Pages
Modules
Data Structures
Files
File List
Globals
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
slibc
port
src
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 */
Generated on Thu Nov 7 2013 02:45:26 for nckernel by
1.8.4