Change argument type to 'unsigned long'.
authorBruno Haible <bruno@clisp.org>
Wed, 6 Nov 2002 18:25:27 +0000 (18:25 +0000)
committerBruno Haible <bruno@clisp.org>
Wed, 6 Nov 2002 18:25:27 +0000 (18:25 +0000)
lib/ChangeLog
lib/gcd.c
lib/gcd.h

index c5bc0d7e8ad8689ad18fa5bf5f7a750218b2e995..929750acbd1f6297be3a59fe10b08e99647979a2 100644 (file)
@@ -1,3 +1,8 @@
+2002-11-06  Bruno Haible  <bruno@clisp.org>
+
+       * gcd.h (gcd): Change argument type to 'unsigned long'.
+       * gcd.c (gcd): Likewise.
+
 2002-11-05  Bruno Haible  <bruno@clisp.org>
 
        * gcd.h: New file, from gettext-0.11.5.
index 4d9e88f2d9c2d802f3d7dd471f11b4712f450a25..af3ba16830df9c5cea94fe9f014c3fd5ed3c1417 100644 (file)
--- a/lib/gcd.c
+++ b/lib/gcd.c
@@ -1,6 +1,6 @@
 /* Arithmetic.
-   Copyright (C) 2001 Free Software Foundation, Inc.
-   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+   Copyright (C) 2001-2002 Free Software Foundation, Inc.
+   Written by Bruno Haible <bruno@clisp.org>, 2001.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 #include <stdlib.h>
 
 /* Return the greatest common divisor of a > 0 and b > 0.  */
-unsigned int
+unsigned long
 gcd (a, b)
-     unsigned int a;
-     unsigned int b;
+     unsigned long a;
+     unsigned long b;
 {
   /* Why no division, as in Euclid's algorithm? Because in Euclid's algorithm
      the division result floor(a/b) or floor(b/a) is very often = 1 or = 2,
@@ -35,7 +35,7 @@ gcd (a, b)
      bit in a single instruction, and the algorithm uses fewer variables than
      Euclid's algorithm.  */
 
-  unsigned int c = a | b;
+  unsigned long c = a | b;
   c = c ^ (c - 1);
   /* c = largest power of 2 that divides a and b.  */
 
index 37ff21ea52127fb21cad4921dfa45a9187cdc608..225057ed87e7e55d93d9f84b6a090e6d8f909840 100644 (file)
--- a/lib/gcd.h
+++ b/lib/gcd.h
@@ -1,6 +1,6 @@
 /* Arithmetic.
-   Copyright (C) 2001 Free Software Foundation, Inc.
-   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+   Copyright (C) 2001-2002 Free Software Foundation, Inc.
+   Written by Bruno Haible <bruno@clisp.org>, 2001.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -28,6 +28,6 @@
 #endif
 
 /* Return the greatest common divisor of a > 0 and b > 0.  */
-extern unsigned int gcd PARAMS ((unsigned int a, unsigned int b));
+extern unsigned long gcd PARAMS ((unsigned long a, unsigned long b));
 
 #endif /* _GCD_H */