Replace FSF snail mail address with URLs.
[glibc.git] / libio / iovdprintf.c
blobc6fdccdde6751d354e48ae04f81e73ca4adf4578
1 /* Copyright (C) 1995, 1997-2000, 2001, 2002, 2003, 2006, 2010
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>.
19 As a special exception, if you link the code in this file with
20 files compiled with a GNU compiler to produce an executable,
21 that does not cause the resulting executable to be covered by
22 the GNU Lesser General Public License. This exception does not
23 however invalidate any other reasons why the executable file
24 might be covered by the GNU Lesser General Public License.
25 This exception applies to code released by its copyright holders
26 in files containing the exception. */
28 #include <libioP.h>
29 #include <stdio_ext.h>
31 int
32 _IO_vdprintf (d, format, arg)
33 int d;
34 const char *format;
35 _IO_va_list arg;
37 struct _IO_FILE_plus tmpfil;
38 struct _IO_wide_data wd;
39 int done;
41 #ifdef _IO_MTSAFE_IO
42 tmpfil.file._lock = NULL;
43 #endif
44 _IO_no_init (&tmpfil.file, _IO_USER_LOCK, 0, &wd, &_IO_wfile_jumps);
45 _IO_JUMPS (&tmpfil) = &_IO_file_jumps;
46 INTUSE(_IO_file_init) (&tmpfil);
47 #if !_IO_UNIFIED_JUMPTABLES
48 tmpfil.vtable = NULL;
49 #endif
50 if (INTUSE(_IO_file_attach) (&tmpfil.file, d) == NULL)
52 INTUSE(_IO_un_link) (&tmpfil);
53 return EOF;
55 tmpfil.file._flags |= _IO_DELETE_DONT_CLOSE;
57 _IO_mask_flags (&tmpfil.file, _IO_NO_READS,
58 _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
60 done = INTUSE(_IO_vfprintf) (&tmpfil.file, format, arg);
62 if (done != EOF && _IO_do_flush (&tmpfil.file) == EOF)
63 done = EOF;
65 _IO_FINISH (&tmpfil.file);
67 return done;
69 ldbl_weak_alias (_IO_vdprintf, vdprintf)