]> git.eshelyaron.com Git - emacs.git/commitdiff
(round_up): Make arguments and return type unsigned.
authorKarl Heuer <kwzh@gnu.org>
Thu, 2 Oct 1997 03:12:38 +0000 (03:12 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 2 Oct 1997 03:12:38 +0000 (03:12 +0000)
src/unexelf.c

index 0a8b6068d308a9419bde2a9cdaed3c31bade723a..799052baf52506ef053900222bde7709416c04b5 100644 (file)
@@ -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)