2 * Copyright (c) 2000-2001 Sendmail, Inc. and its suppliers.
4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * By using this file, you agree to the terms and conditions set
11 * forth in the LICENSE file which can be found at the top level of
12 * the sendmail distribution.
15 #pragma ident "%Z%%M% %I% %E% SMI"
18 SM_RCSID("@(#)$Id: vprintf.c,v 1.12 2001/01/24 01:27:26 gshapiro Exp $")
23 ** SM_VPRINTF -- print to standard out with variable length args
26 ** timeout -- length of time allow to do the print
27 ** fmt -- the format of the output
28 ** ap -- the variable number of args to be used for output
31 ** as sm_io_vfprintf() does.
35 sm_vprintf(timeout
, fmt
, ap
)
40 return sm_io_vfprintf(smiostdout
, timeout
, fmt
, ap
);