summaryrefslogtreecommitdiff
path: root/src/unexelf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unexelf.c')
-rw-r--r--src/unexelf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unexelf.c b/src/unexelf.c
index 0a8b6068d30..799052baf52 100644
--- a/src/unexelf.c
+++ b/src/unexelf.c
@@ -544,9 +544,9 @@ typedef unsigned char byte;
/* Round X up to a multiple of Y. */
-int
+ElfW(Addr)
round_up (x, y)
- int x, y;
+ ElfW(Addr) x, y;
{
int rem = x % y;
if (rem == 0)