about summary refs log tree commit diff
path: root/string/ffsll.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/ffsll.c')
-rw-r--r--string/ffsll.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/string/ffsll.c b/string/ffsll.c
index 2c89171d03..6bcfe125ef 100644
--- a/string/ffsll.c
+++ b/string/ffsll.c
@@ -24,8 +24,7 @@
 
 /* Find the first bit set in I.  */
 int
-ffsll (i)
-     long long int i;
+ffsll (long long int i)
 {
   unsigned long long int x = i & -i;