* system.h (getpagesize): Return 'int' instead of 'long'.
From-SVN: r88204
This commit is contained in:
parent
7d381002de
commit
f6260033c9
2 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue