blob: ffcb7a444ebbbf61fc35bb7941f8ed30ae665950 [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
10#include <stdio.h>
Eric Andersen14fe3922001-04-04 19:26:22 +000011#include <unistd.h>
Eric Andersenaad1a882001-03-16 22:47:14 +000012#include "libbb.h"
13
14
15
16#if (__GLIBC__ < 2)
Rob Landleydfba7412006-03-06 20:47:33 +000017int vdprintf(int d, const char *format, va_list ap)
Eric Andersenaad1a882001-03-16 22:47:14 +000018{
19 char buf[BUF_SIZE];
20 int len;
21
22 len = vsprintf(buf, format, ap);
23 return write(d, buf, len);
24}
25#endif