* system.h (getpagesize): Return 'int' instead of 'long'.

From-SVN: r88204
This commit is contained in:
Eric Botcazou 2004-09-28 00:38:08 +02:00 committed by Eric Botcazou
parent 7d381002de
commit f6260033c9
2 changed files with 6 additions and 2 deletions

View 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

View 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