* system.h (getpagesize): Return 'int' instead of 'long'.
authorEric Botcazou <ebotcazou@libertysurf.fr>
Mon, 27 Sep 2004 22:38:08 +0000 (00:38 +0200)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Mon, 27 Sep 2004 22:38:08 +0000 (22:38 +0000)
From-SVN: r88204

gcc/ChangeLog
gcc/system.h

index 71efb3670c2748acae9dfb18651dbe4fe07e08a4..02477ba355d1cd846cabf756bba632acd13f5c86 100644 (file)
@@ -1,3 +1,7 @@
+2004-09-27  Eric Botcazou  <ebotcazou@libertysurf.fr>
+
+       * system.h (getpagesize): Return 'int' instead of 'long'.
+
 2004-09-27  Michael Matz <matz@suse.de>
 
        PR bootstrap/17698
index 191e1b102c628641f0d699ed2290d77a78c5535e..7e002a1157cc41c1a5e420e1bbcb33cfeb675088 100644 (file)
@@ -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