ce426f
commit d3c827e7c8208afeaed880cf8cf2515c86d10f17
ce426f
Author: Andreas Krebbel <krebbel@linux.vnet.ibm.com>
ce426f
Date:   Fri Sep 19 11:26:31 2014 +0200
ce426f
ce426f
    stdlib/longlong.h: Add __udiv_w_sdiv prototype.
ce426f
ce426f
Index: b/stdlib/longlong.h
ce426f
===================================================================
ce426f
--- a/stdlib/longlong.h
ce426f
+++ b/stdlib/longlong.h
ce426f
@@ -1642,7 +1642,8 @@ extern UHItype __stormy16_count_leading_
ce426f
 #if !defined (udiv_qrnnd) && defined (sdiv_qrnnd)
ce426f
 #define udiv_qrnnd(q, r, nh, nl, d) \
ce426f
   do {									\
ce426f
-    USItype __r;							\
ce426f
+    extern UWtype __udiv_w_sdiv (UWtype *, UWtype, UWtype, UWtype);	\
ce426f
+    UWtype __r;								\
ce426f
     (q) = __udiv_w_sdiv (&__r, nh, nl, d);				\
ce426f
     (r) = __r;								\
ce426f
   } while (0)