URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [posix/] [src/] [getpagesize.c] - Rev 1026
Go to most recent revision | Compare with Previous | Blame | View Log
/* * getpagesize.c,v 1.1 2001/09/13 13:23:30 joel Exp */ #if HAVE_CONFIG_H #include "config.h" #endif #include <unistd.h> /*PAGE * * Get System Page Size (from SVR4 and 4.2+ BSD) * * This is not a functional version but the SPARC backend for at least * gcc 2.8.1 plus gnat 3.13p and gcc 3.0.1 require it to be there and * return a reasonable value. */ size_t getpagesize(void) { return 4096; }
Go to most recent revision | Compare with Previous | Blame | View Log