mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 04:50:07 +00:00
Update.
1998-11-17 Geoff Keating <geoffk@ozemail.com.au> * sysdeps/unix/sysv/linux/powerpc/pwrite.c: Prototype the syscall under the right name (squish warning). * sysdeps/unix/sysv/linux/powerpc/pwrite64.c: Likewise. 1998-11-17 Geoff Keating <geoffk@ozemail.com.au> * stdio-common/_itoa.c (_itoa): Add redundant parentheses to prevent warnings.
This commit is contained in:
parent
9d1efe331c
commit
cae8899646
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
||||
1998-11-17 Geoff Keating <geoffk@ozemail.com.au>
|
||||
|
||||
* sysdeps/unix/sysv/linux/powerpc/pwrite.c: Prototype the syscall
|
||||
under the right name (squish warning).
|
||||
* sysdeps/unix/sysv/linux/powerpc/pwrite64.c: Likewise.
|
||||
|
||||
1998-11-17 Geoff Keating <geoffk@ozemail.com.au>
|
||||
|
||||
* stdio-common/_itoa.c (_itoa): Add redundant parentheses to
|
||||
prevent warnings.
|
||||
|
||||
1998-11-16 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* intl/locale.alias: Change `japanese' alais to match X11R6's.
|
||||
|
@ -278,8 +278,8 @@ _itoa (value, buflim, base, upper_case)
|
||||
if (big_normalization_steps == 0)
|
||||
xh = 0;
|
||||
else
|
||||
xh = (mp_limb_t) (value >> 64 - big_normalization_steps);
|
||||
xl = (mp_limb_t) (value >> 32 - big_normalization_steps);
|
||||
xh = (mp_limb_t) (value >> (64 - big_normalization_steps));
|
||||
xl = (mp_limb_t) (value >> (32 - big_normalization_steps));
|
||||
udiv_qrnnd_preinv (x1hi, r, xh, xl, big_base_norm,
|
||||
brec->big.base_ninv);
|
||||
|
||||
@ -292,7 +292,7 @@ _itoa (value, buflim, base, upper_case)
|
||||
xh = x1hi;
|
||||
else
|
||||
xh = ((x1hi << big_normalization_steps)
|
||||
| (x1lo >> 32 - big_normalization_steps));
|
||||
| (x1lo >> (32 - big_normalization_steps)));
|
||||
xl = x1lo << big_normalization_steps;
|
||||
udiv_qrnnd_preinv (t[0], x, xh, xl, big_base_norm,
|
||||
big_normalization_steps);
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
#ifdef __NR_pwrite
|
||||
|
||||
extern ssize_t __syscall_pwrite64 (int fd, const void *buf, size_t count,
|
||||
extern ssize_t __syscall_pwrite (int fd, const void *buf, size_t count,
|
||||
off64_t offset);
|
||||
|
||||
static ssize_t __emulate_pwrite (int fd, const void *buf, size_t count,
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
#ifdef __NR_pwrite
|
||||
|
||||
extern ssize_t __syscall_pwrite64 (int fd, const void *buf, size_t count,
|
||||
extern ssize_t __syscall_pwrite (int fd, const void *buf, size_t count,
|
||||
off64_t offset);
|
||||
|
||||
static ssize_t __emulate_pwrite64 (int fd, const void *buf, size_t count,
|
||||
|
Loading…
Reference in New Issue
Block a user