blob: d16c51947a0ffaa6e86d5a0b77dfe90f5dc6600c [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 *
Bernhard Reutner-Fischerb1629b12006-05-19 19:29:19 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
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
Rob Landleydfba7412006-03-06 20:47:33 +000013int vdprintf(int d, const char *format, va_list ap)
Eric Andersenaad1a882001-03-16 22:47:14 +000014{
15 char buf[BUF_SIZE];
16 int len;
17
18 len = vsprintf(buf, format, ap);
19 return write(d, buf, len);
20}
21#endif