changeset 20026:027030dd12c4

(round_up): Make arguments and return type unsigned.
author Karl Heuer <kwzh@gnu.org>
date Thu, 02 Oct 1997 03:12:38 +0000
parents 37e3d9d78ad7
children 11f33d684e3e
files src/unexelf.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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)