mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-07 06:43:00 +03:00
Sun May 12 22:52:22 1996 Bruce Elliott <belliott@accessone.com>
* stdio-common/vfprintf.c: Correct handling of unsigned short values. * extra-lib.mk (alltype-$(lib)): Put libs in $(objpfx) instead of $(common-objpfx). * Makerules [install-lib.a]: Find them there.
This commit is contained in:
@@ -1,5 +1,14 @@
|
|||||||
|
Sun May 12 22:52:22 1996 Bruce Elliott <belliott@accessone.com>
|
||||||
|
|
||||||
|
* stdio-common/vfprintf.c: Correct handling of unsigned short
|
||||||
|
values.
|
||||||
|
|
||||||
Mon May 13 12:03:03 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
Mon May 13 12:03:03 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* extra-lib.mk (alltype-$(lib)): Put libs in $(objpfx) instead of
|
||||||
|
$(common-objpfx).
|
||||||
|
* Makerules [install-lib.a]: Find them there.
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/i386/profil-counter.h: New file.
|
* sysdeps/unix/sysv/linux/i386/profil-counter.h: New file.
|
||||||
|
|
||||||
* extra-lib.mk: Skip the hair if $(object-suffixes-$(lib)) is empty.
|
* extra-lib.mk: Skip the hair if $(object-suffixes-$(lib)) is empty.
|
||||||
|
@@ -495,8 +495,10 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap)
|
|||||||
{ \
|
{ \
|
||||||
if (is_long) \
|
if (is_long) \
|
||||||
number.word = va_arg (ap, unsigned long int); \
|
number.word = va_arg (ap, unsigned long int); \
|
||||||
|
else if (!is_short) \
|
||||||
|
number.word = va_arg (ap, unsigned int); \
|
||||||
else \
|
else \
|
||||||
number.word = va_arg (ap, unsigned int); /* Promoted. */ \
|
number.word = (unsigned short int) va_arg (ap, unsigned int); \
|
||||||
\
|
\
|
||||||
LABEL (number): \
|
LABEL (number): \
|
||||||
if (prec < 0) \
|
if (prec < 0) \
|
||||||
|
Reference in New Issue
Block a user