Blame libio/iovsprintf.c

Packit Service 82fcde
/* Copyright (C) 1993-2018 Free Software Foundation, Inc.
Packit Service 82fcde
   This file is part of the GNU C Library.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 82fcde
   modify it under the terms of the GNU Lesser General Public
Packit Service 82fcde
   License as published by the Free Software Foundation; either
Packit Service 82fcde
   version 2.1 of the License, or (at your option) any later version.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 82fcde
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 82fcde
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 82fcde
   Lesser General Public License for more details.
Packit Service 82fcde
Packit Service 82fcde
   You should have received a copy of the GNU Lesser General Public
Packit Service 82fcde
   License along with the GNU C Library; if not, see
Packit Service 82fcde
   <http://www.gnu.org/licenses/>.
Packit Service 82fcde
Packit Service 82fcde
   As a special exception, if you link the code in this file with
Packit Service 82fcde
   files compiled with a GNU compiler to produce an executable,
Packit Service 82fcde
   that does not cause the resulting executable to be covered by
Packit Service 82fcde
   the GNU Lesser General Public License.  This exception does not
Packit Service 82fcde
   however invalidate any other reasons why the executable file
Packit Service 82fcde
   might be covered by the GNU Lesser General Public License.
Packit Service 82fcde
   This exception applies to code released by its copyright holders
Packit Service 82fcde
   in files containing the exception.  */
Packit Service 82fcde
Packit Service 82fcde
#include "libioP.h"
Packit Service 82fcde
#include "strfile.h"
Packit Service 82fcde
Packit Service 82fcde
int
Packit Service 82fcde
__IO_vsprintf (char *string, const char *format, va_list args)
Packit Service 82fcde
{
Packit Service 82fcde
  _IO_strfile sf;
Packit Service 82fcde
  int ret;
Packit Service 82fcde
Packit Service 82fcde
#ifdef _IO_MTSAFE_IO
Packit Service 82fcde
  sf._sbf._f._lock = NULL;
Packit Service 82fcde
#endif
Packit Service 82fcde
  _IO_no_init (&sf._sbf._f, _IO_USER_LOCK, -1, NULL, NULL);
Packit Service 82fcde
  _IO_JUMPS (&sf._sbf) = &_IO_str_jumps;
Packit Service 82fcde
  _IO_str_init_static_internal (&sf, string, -1, string);
Packit Service 82fcde
  ret = _IO_vfprintf (&sf._sbf._f, format, args);
Packit Service 82fcde
  _IO_putc_unlocked ('\0', &sf._sbf._f);
Packit Service 82fcde
  return ret;
Packit Service 82fcde
}
Packit Service 82fcde
ldbl_hidden_def (__IO_vsprintf, _IO_vsprintf)
Packit Service 82fcde
Packit Service 82fcde
ldbl_strong_alias (__IO_vsprintf, _IO_vsprintf)
Packit Service 82fcde
ldbl_weak_alias (__IO_vsprintf, vsprintf)