1
1

These declarations are repeated in src/util/printf.h, and apparently

everywhere in the tree that uses these functions includes that header
file.  So these are redundant.

This commit was SVN r3188.
Этот коммит содержится в:
Jeff Squyres 2004-10-16 12:36:53 +00:00
родитель 85c2d9edd8
Коммит 2d5c0d1edc

Просмотреть файл

@ -129,22 +129,18 @@ extern "C" {
#endif
#ifndef HAVE_ASPRINTF
int ompi_asprintf(char **, const char *, ...);
# define asprintf ompi_asprintf
#endif
#ifndef HAVE_SNPRINTF
int ompi_snprintf(char *, size_t, const char *, ...);
# define snprintf ompi_snprintf
#endif
#ifndef HAVE_VASPRINTF
int ompi_vasprintf(char **, const char *, va_list);
# define vasprintf ompi_vasprintf
#endif
#ifndef HAVE_VSNPRINTF
int ompi_vsnprintf(char *, size_t, const char *, va_list);
# define vsnprintf ompi_vsnprintf
#endif