source:
trunk/minix/lib/other/getpagesize.c@
10
Last change on this file since 10 was 9, checked in by , 14 years ago | |
---|---|
File size: 131 bytes |
Rev | Line | |
---|---|---|
[9] | 1 | /* |
2 | getpagesize.c | |
3 | */ | |
4 | ||
5 | #include <unistd.h> | |
6 | ||
7 | int getpagesize(void) | |
8 | { | |
9 | /* We don't have paging. Pretend that we do. */ | |
10 | return 4096; | |
11 | } |
Note:
See TracBrowser
for help on using the repository browser.