# HG changeset patch # User Karl Heuer # Date 875761958 0 # Node ID 027030dd12c49c1d031564094219ad57b9d117dc # Parent 37e3d9d78ad7d7d9d83e803e01aec4238089634a (round_up): Make arguments and return type unsigned. diff -r 37e3d9d78ad7 -r 027030dd12c4 src/unexelf.c --- a/src/unexelf.c Thu Oct 02 03:10:50 1997 +0000 +++ b/src/unexelf.c Thu Oct 02 03:12:38 1997 +0000 @@ -544,9 +544,9 @@ /* 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)