Change pointers from char * to unsigned char *
[binutils-gdb.git] / include / longlong.h
index 31f88cb3f597c749c0c205c00bce45a6ed455fa4..4f2c4f5dfcc0e110451734c0cede8de7158b026b 100644 (file)
@@ -1,5 +1,5 @@
 /* longlong.h -- definitions for mixed size 32/64 bit arithmetic.
-   Copyright (C) 1991-2014 Free Software Foundation, Inc.
+   Copyright (C) 1991-2015 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
 
@@ -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)