diff options
Diffstat (limited to 'posix')
-rw-r--r-- | posix/unistd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/unistd.h b/posix/unistd.h index e9697c7592..3b75286d9e 100644 --- a/posix/unistd.h +++ b/posix/unistd.h @@ -814,8 +814,8 @@ extern int sync (void) __THROW; /* Return the number of bytes in a page. This is the system's page size, which is not necessarily the same as the hardware page size. */ -extern int __getpagesize (void) __attribute__ ((__const__)) __THROW; -extern int getpagesize (void) __attribute__ ((__const__)) __THROW; +extern int __getpagesize (void) __THROW __attribute__ ((__const__)); +extern int getpagesize (void) __THROW __attribute__ ((__const__)); /* Truncate FILE to LENGTH bytes. */ |