asprintf.c 617 B

12345678910111213141516171819202122232425262728293031323334
  1. /* Copyright (C) 2004 Manuel Novoa III <mjn3@codepoet.org>
  2. *
  3. * GNU Library General Public License (LGPL) version 2 or later.
  4. *
  5. * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details.
  6. */
  7. #include <features.h>
  8. #ifdef __USE_GNU
  9. #include "_stdio.h"
  10. #include <stdarg.h>
  11. #ifndef __STDIO_HAS_VSNPRINTF
  12. #warning Skipping asprintf and __asprintf since no vsnprintf!
  13. #else
  14. int asprintf(char **__restrict buf, const char * __restrict format, ...)
  15. {
  16. va_list arg;
  17. int rv;
  18. va_start(arg, format);
  19. rv = vasprintf(buf, format, arg);
  20. va_end(arg);
  21. return rv;
  22. }
  23. libc_hidden_def(asprintf)
  24. #endif
  25. #endif