summaryrefslogtreecommitdiff
path: root/stdio
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-04-10 09:00:08 +0000
committerRoland McGrath <roland@gnu.org>1995-04-10 09:00:08 +0000
commit8c0dc19cc688bd10f83a92fab2c9cdaf4b6154ec (patch)
tree0a5362b2c4bf49a9b76dacb3d845c6e29b7a1024 /stdio
parent6aa8372e1684381fdc8fdacb4fdd71415c2ecde3 (diff)
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.
Diffstat (limited to 'stdio')
-rw-r--r--stdio/_itoa.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/stdio/_itoa.h b/stdio/_itoa.h
index 791ce6c87f..81240507b1 100644
--- a/stdio/_itoa.h
+++ b/stdio/_itoa.h
@@ -1,5 +1,5 @@
/* 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.
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,
unsigned int base, int upper_case));
-#if defined (__GNUC__) && defined (__OPTIMIZE__)
-extern __inline char *
+#ifndef _EXTERN_INLINE
+#define _EXTERN_INLINE extern __inline
+#endif
+
+_EXTERN_INLINE
+char *
_itoa (unsigned long long int value, char *buflim,
unsigned int base, int upper_case)
{
@@ -49,6 +53,6 @@ _itoa (unsigned long long int value, char *buflim,
return bp;
}
-#endif
+
#endif /* itoa.h */