stdlib/longlong.h: Add __udiv_w_sdiv prototype.
authorAndreas Krebbel <krebbel@linux.vnet.ibm.com>
Fri, 19 Sep 2014 09:26:31 +0000 (11:26 +0200)
committerAndreas Krebbel <krebbel@linux.vnet.ibm.com>
Fri, 19 Sep 2014 09:26:31 +0000 (11:26 +0200)
ChangeLog
stdlib/longlong.h

index d6c96ce..778b3e5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-09-19  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
+
+       * stdlib/longlong.h: Add __udiv_w_sdiv prototype.
+
 2014-09-17  Arjun Shankar  <arjun.is@lostca.se>
 
        * time/tst-ftime.c: New test.
index 31f88cb..42c68dd 100644 (file)
@@ -1687,7 +1687,8 @@ extern UHItype __stormy16_count_leading_zeros (UHItype);
 #if !defined (udiv_qrnnd) && defined (sdiv_qrnnd)
 #define udiv_qrnnd(q, r, nh, nl, d) \
   do {                                                                 \
-    USItype __r;                                                       \
+    extern UWtype __udiv_w_sdiv (UWtype *, UWtype, UWtype, UWtype);    \
+    UWtype __r;                                                                \
     (q) = __udiv_w_sdiv (&__r, nh, nl, d);                             \
     (r) = __r;                                                         \
   } while (0)