source: trunk/minix/lib/other/getpagesize.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 131 bytes
Line 
1/*
2getpagesize.c
3*/
4
5#include <unistd.h>
6
7int 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.