mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-18 06:30:05 +00:00
Sun Apr 9 01:24:33 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* Makerules (+depfiles): Translate %.so to %.o in $(extra-objs). * malloc/free.c [emacs] (__malloc_safe_bcopy): Define to safe_bcopy. * malloc/realloc.c (__malloc_safe_bcopy): Undefine before defining. * malloc/free.c (memmove, __malloc_safe_bcopy): Do include these #ifdef emacs, but only #ifndef memmove. * malloc/realloc.c [emacs] (__malloc_safe_bcopy): Just #define to safe_bcopy. (memmove): Define only if undefined. * stdio/_itoa.h (_EXTERN_INLINE): Define if undefined. (_itoa): Use it in defn.
This commit is contained in:
parent
6aa8372e16
commit
8c0dc19cc6
15
ChangeLog
15
ChangeLog
@ -1,3 +1,16 @@
|
|||||||
|
Sun Apr 9 01:24:33 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* Makerules (+depfiles): Translate %.so to %.o in $(extra-objs).
|
||||||
|
|
||||||
|
* malloc/free.c [emacs] (__malloc_safe_bcopy): Define to safe_bcopy.
|
||||||
|
* malloc/realloc.c (__malloc_safe_bcopy): Undefine before defining.
|
||||||
|
|
||||||
|
* malloc/free.c (memmove, __malloc_safe_bcopy): Do include these
|
||||||
|
#ifdef emacs, but only #ifndef memmove.
|
||||||
|
* malloc/realloc.c [emacs] (__malloc_safe_bcopy): Just #define to
|
||||||
|
safe_bcopy.
|
||||||
|
(memmove): Define only if undefined.
|
||||||
|
|
||||||
Sat Apr 8 00:40:59 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
Sat Apr 8 00:40:59 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||||
|
|
||||||
* extra-lib.mk (install-lib, extra-objs, alltypes-$(lib)): Make
|
* extra-lib.mk (install-lib, extra-objs, alltypes-$(lib)): Make
|
||||||
@ -21,6 +34,8 @@ Sat Apr 8 00:40:59 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
|||||||
#ifdef emacs.
|
#ifdef emacs.
|
||||||
* malloc/realloc.c: Likewise.
|
* malloc/realloc.c: Likewise.
|
||||||
|
|
||||||
|
* stdio/_itoa.h (_EXTERN_INLINE): Define if undefined.
|
||||||
|
(_itoa): Use it in defn.
|
||||||
* stdio/_itoa.c (_EXTERN_INLINE): Define to empty before #include
|
* stdio/_itoa.c (_EXTERN_INLINE): Define to empty before #include
|
||||||
"_itoa.h".
|
"_itoa.h".
|
||||||
(_itoa): Function removed.
|
(_itoa): Function removed.
|
||||||
|
@ -281,7 +281,7 @@ include $(patsubst %,$(..)extra-lib.mk,$(extra-libs))
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
+depfiles := $(strip $(sources:.c=.d) \
|
+depfiles := $(strip $(sources:.c=.d) \
|
||||||
$(patsubst %.o,%.d,$(filter %.o,$(extra-objs))) \
|
$(patsubst %.o,%.d,$(filter %.o,$(extra-objs:.so=.o))) \
|
||||||
$(addsuffix .d,$(others) $(tests)))
|
$(addsuffix .d,$(others) $(tests)))
|
||||||
+depfiles := $(addprefix $(objpfx),\
|
+depfiles := $(addprefix $(objpfx),\
|
||||||
$(filter-out $(addsuffix .d,$(omit-deps)),\
|
$(filter-out $(addsuffix .d,$(omit-deps)),\
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Internal function for converting integers to ASCII.
|
/* Internal function for converting integers to ASCII.
|
||||||
Copyright (C) 1994 Free Software Foundation, Inc.
|
Copyright (C) 1994, 1995 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -31,8 +31,12 @@ extern const char _itoa_lower_digits[], _itoa_upper_digits[];
|
|||||||
extern char *_itoa __P ((unsigned long long int value, char *buflim,
|
extern char *_itoa __P ((unsigned long long int value, char *buflim,
|
||||||
unsigned int base, int upper_case));
|
unsigned int base, int upper_case));
|
||||||
|
|
||||||
#if defined (__GNUC__) && defined (__OPTIMIZE__)
|
#ifndef _EXTERN_INLINE
|
||||||
extern __inline char *
|
#define _EXTERN_INLINE extern __inline
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_EXTERN_INLINE
|
||||||
|
char *
|
||||||
_itoa (unsigned long long int value, char *buflim,
|
_itoa (unsigned long long int value, char *buflim,
|
||||||
unsigned int base, int upper_case)
|
unsigned int base, int upper_case)
|
||||||
{
|
{
|
||||||
@ -49,6 +53,6 @@ _itoa (unsigned long long int value, char *buflim,
|
|||||||
|
|
||||||
return bp;
|
return bp;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* itoa.h */
|
#endif /* itoa.h */
|
||||||
|
Loading…
Reference in New Issue
Block a user