summaryrefslogtreecommitdiff
path: root/lib/gcd.h
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2002-11-19 13:32:42 +0000
committerBruno Haible <bruno@clisp.org>2002-11-19 13:32:42 +0000
commit18470530db277476b5a229375fb5a8cb27f26ed0 (patch)
tree97c0bebae0671c5251bf6c8b72688d4bc809de3d /lib/gcd.h
parentb1943fc2c6f51fd64340dd4db4309643304ed413 (diff)
downloadgnulib-18470530db277476b5a229375fb5a8cb27f26ed0.tar.gz
Move to ANSI C.
Diffstat (limited to 'lib/gcd.h')
-rw-r--r--lib/gcd.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/gcd.h b/lib/gcd.h
index 225057ed87..39ea5ed8da 100644
--- a/lib/gcd.h
+++ b/lib/gcd.h
@@ -19,15 +19,7 @@
#ifndef _GCD_H
#define _GCD_H
-#ifndef PARAMS
-# if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES
-# define PARAMS(args) args
-# else
-# define PARAMS(args) ()
-# endif
-#endif
-
/* Return the greatest common divisor of a > 0 and b > 0. */
-extern unsigned long gcd PARAMS ((unsigned long a, unsigned long b));
+extern unsigned long gcd (unsigned long a, unsigned long b);
#endif /* _GCD_H */