summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/getpagesize.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-24 11:14:12 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-24 11:14:12 +0000
commitd3b5fe3a2e24c2847940c17d7c617fc02b716abc (patch)
tree0e14feb2dba042309d0c676b5dcf7a9bfb39e442 /cpukit/posix/src/getpagesize.c
parentRegenerate. (diff)
downloadrtems-d3b5fe3a2e24c2847940c17d7c617fc02b716abc.tar.bz2
2009-09-24 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/src/getpagesize.c, posix/Makefile.am: Eliminate one copy of getpagesize() and make it return an int. * posix/src/getpagesize.c: Removed.
Diffstat (limited to 'cpukit/posix/src/getpagesize.c')
-rw-r--r--cpukit/posix/src/getpagesize.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/cpukit/posix/src/getpagesize.c b/cpukit/posix/src/getpagesize.c
deleted file mode 100644
index 9bcc2930fd..0000000000
--- a/cpukit/posix/src/getpagesize.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * COPYRIGHT (c) 1989-2009.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <unistd.h>
-#include <sys/param.h>
-
-size_t getpagesize(void)
-{
- return PAGE_SIZE;
-}