blob: 05426873e552b43039e937fe665bfcf9df6e6013 [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersenaad1a882001-03-16 22:47:14 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersenaad1a882001-03-16 22:47:14 +00008 */
9
Eric Andersenaad1a882001-03-16 22:47:14 +000010#include "libbb.h"
11
Denis Vlasenko83e5d6f2006-12-18 21:49:06 +000012#if defined(__GLIBC__) && __GLIBC__ < 2
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000013int FAST_FUNC vdprintf(int d, const char *format, va_list ap)
Eric Andersenaad1a882001-03-16 22:47:14 +000014{
Denys Vlasenkoec447c72011-10-24 04:06:18 +020015 char buf[8 * 1024];
Eric Andersenaad1a882001-03-16 22:47:14 +000016 int len;
17
Denys Vlasenkoec447c72011-10-24 04:06:18 +020018 len = vsnprintf(buf, sizeof(buf), format, ap);
Eric Andersenaad1a882001-03-16 22:47:14 +000019 return write(d, buf, len);
20}
21#endif