diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2002-09-20 00:21:58 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2002-09-20 00:21:58 +0000 |
commit | 8af4d2db0df4bdddad390f4c79dc3c188f0a862c (patch) | |
tree | 4e0468fbf90c0a6b3aa0de12dcc079562f316490 | |
parent | b7ccb03dbbe426e1c90f4d8af29f0ad8230d00fd (diff) | |
download | gdb-8af4d2db0df4bdddad390f4c79dc3c188f0a862c.tar.gz |
* libiberty.h (asprintf, vasprintf): Don't declare them if the
corresponding HAVE_DECL_ macro is 1.
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/libiberty.h | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 6f17145d771..148c9bd59a5 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -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> * elf/i386.h (R_386_TLS_TPOFF, R_386_TLS_IE, R_386_TLS_GOTIE): diff --git a/include/libiberty.h b/include/libiberty.h index 0463301832e..983fd96e5ae 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -264,16 +264,20 @@ extern int pexecute PARAMS ((const char *, char * const *, const char *, extern int pwait PARAMS ((int, int *, int)); +#if !HAVE_DECL_ASPRINTF /* Like sprintf but provides a pointer to malloc'd storage, which must be freed by the caller. */ 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 must be freed by the caller. */ extern int vasprintf PARAMS ((char **, const char *, va_list)) ATTRIBUTE_PRINTF(2,0); +#endif #define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0])) |