summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-02-06 14:50:39 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-02-06 14:50:39 +0000
commita725f7e641dba0285dec5f92db03c380adcdfebc (patch)
treefaecdf50369a17204a5dbd6c39abeb3220a9411c /cpukit
parentRemove references to getpagesize.c. (diff)
downloadrtems-a725f7e641dba0285dec5f92db03c380adcdfebc.tar.bz2
Removed.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/posix/src/getpagesize.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/cpukit/posix/src/getpagesize.c b/cpukit/posix/src/getpagesize.c
deleted file mode 100644
index 806c500a9b..0000000000
--- a/cpukit/posix/src/getpagesize.c
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * $Id$
- */
-
-#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;
-}