source:
trunk/minix/lib/other/getpagesize.c@
11
| Last change on this file since 11 was 9, checked in by , 15 years ago | |
|---|---|
| File size: 131 bytes | |
| Line | |
|---|---|
| 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.