1*5af32e75SAxel Dörfler /* Copyright (C) 1991, 1995, 1997, 1998, 2002 Free Software Foundation, Inc.
2*5af32e75SAxel Dörfler This file is part of the GNU C Library.
3*5af32e75SAxel Dörfler
4*5af32e75SAxel Dörfler The GNU C Library is free software; you can redistribute it and/or
5*5af32e75SAxel Dörfler modify it under the terms of the GNU Lesser General Public
6*5af32e75SAxel Dörfler License as published by the Free Software Foundation; either
7*5af32e75SAxel Dörfler version 2.1 of the License, or (at your option) any later version.
8*5af32e75SAxel Dörfler
9*5af32e75SAxel Dörfler The GNU C Library is distributed in the hope that it will be useful,
10*5af32e75SAxel Dörfler but WITHOUT ANY WARRANTY; without even the implied warranty of
11*5af32e75SAxel Dörfler MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12*5af32e75SAxel Dörfler Lesser General Public License for more details.
13*5af32e75SAxel Dörfler
14*5af32e75SAxel Dörfler You should have received a copy of the GNU Lesser General Public
15*5af32e75SAxel Dörfler License along with the GNU C Library; if not, write to the Free
16*5af32e75SAxel Dörfler Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17*5af32e75SAxel Dörfler 02111-1307 USA. */
18*5af32e75SAxel Dörfler
19*5af32e75SAxel Dörfler #include <stdarg.h>
20*5af32e75SAxel Dörfler #include <stdio.h>
21*5af32e75SAxel Dörfler
22*5af32e75SAxel Dörfler #ifdef USE_IN_LIBIO
23*5af32e75SAxel Dörfler # include <libio/iolibio.h>
24*5af32e75SAxel Dörfler # define vsprintf(s, f, a) INTUSE(_IO_vsprintf) (s, f, a)
25*5af32e75SAxel Dörfler #endif
26*5af32e75SAxel Dörfler
27*5af32e75SAxel Dörfler /* Write formatted output into S, according to the format string FORMAT. */
28*5af32e75SAxel Dörfler /* VARARGS2 */
29*5af32e75SAxel Dörfler int
sprintf(char * s,const char * format,...)30*5af32e75SAxel Dörfler sprintf (char *s, const char *format, ...)
31*5af32e75SAxel Dörfler {
32*5af32e75SAxel Dörfler va_list arg;
33*5af32e75SAxel Dörfler int done;
34*5af32e75SAxel Dörfler
35*5af32e75SAxel Dörfler va_start (arg, format);
36*5af32e75SAxel Dörfler done = vsprintf (s, format, arg);
37*5af32e75SAxel Dörfler va_end (arg);
38*5af32e75SAxel Dörfler
39*5af32e75SAxel Dörfler return done;
40*5af32e75SAxel Dörfler }
41*5af32e75SAxel Dörfler libc_hidden_def (sprintf)
42*5af32e75SAxel Dörfler
43*5af32e75SAxel Dörfler #ifdef USE_IN_LIBIO
44*5af32e75SAxel Dörfler strong_alias(sprintf, _IO_sprintf)
45*5af32e75SAxel Dörfler #endif
46