From c1e99292fb32ae0080ca719c5433d4eb39ed5b10 Mon Sep 17 00:00:00 2001 From: ebotcazou Date: Mon, 27 Sep 2004 22:38:08 +0000 Subject: * system.h (getpagesize): Return 'int' instead of 'long'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88204 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/system.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/system.h') diff --git a/gcc/system.h b/gcc/system.h index 191e1b102c6..7e002a1157c 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -303,8 +303,8 @@ extern char *getenv (const char *); extern int getopt (int, char * const *, const char *); #endif -#if defined(HAVE_DECL_GETPAGESIZE) && !HAVE_DECL_GETPAGESIZE -extern long getpagesize (void); +#if defined (HAVE_DECL_GETPAGESIZE) && !HAVE_DECL_GETPAGESIZE +extern int getpagesize (void); #endif #if defined (HAVE_DECL_GETWD) && !HAVE_DECL_GETWD -- cgit v1.2.1