* libiberty.h (asprintf, vasprintf): Don't declare them if the
corresponding HAVE_DECL_ macro is 1.
This commit is contained in:
parent
76f28487ee
commit
0226921e1d
|
@ -1,3 +1,8 @@
|
||||||
|
2002-09-19 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
|
* libiberty.h (asprintf, vasprintf): Don't declare them if the
|
||||||
|
corresponding HAVE_DECL_ macro is 1.
|
||||||
|
|
||||||
2002-09-19 Jakub Jelinek <jakub@redhat.com>
|
2002-09-19 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* elf/i386.h (R_386_TLS_TPOFF, R_386_TLS_IE, R_386_TLS_GOTIE):
|
* elf/i386.h (R_386_TLS_TPOFF, R_386_TLS_IE, R_386_TLS_GOTIE):
|
||||||
|
|
|
@ -264,16 +264,20 @@ extern int pexecute PARAMS ((const char *, char * const *, const char *,
|
||||||
|
|
||||||
extern int pwait PARAMS ((int, int *, int));
|
extern int pwait PARAMS ((int, int *, int));
|
||||||
|
|
||||||
|
#if !HAVE_DECL_ASPRINTF
|
||||||
/* Like sprintf but provides a pointer to malloc'd storage, which must
|
/* Like sprintf but provides a pointer to malloc'd storage, which must
|
||||||
be freed by the caller. */
|
be freed by the caller. */
|
||||||
|
|
||||||
extern int asprintf PARAMS ((char **, const char *, ...)) ATTRIBUTE_PRINTF_2;
|
extern int asprintf PARAMS ((char **, const char *, ...)) ATTRIBUTE_PRINTF_2;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !HAVE_DECL_VASPRINTF
|
||||||
/* Like vsprintf but provides a pointer to malloc'd storage, which
|
/* Like vsprintf but provides a pointer to malloc'd storage, which
|
||||||
must be freed by the caller. */
|
must be freed by the caller. */
|
||||||
|
|
||||||
extern int vasprintf PARAMS ((char **, const char *, va_list))
|
extern int vasprintf PARAMS ((char **, const char *, va_list))
|
||||||
ATTRIBUTE_PRINTF(2,0);
|
ATTRIBUTE_PRINTF(2,0);
|
||||||
|
#endif
|
||||||
|
|
||||||
#define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
|
#define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue