Beispiel #1
0
int
attribute_compat_text_section
__nldbl___vdprintf_chk (int d, int flag, const char *fmt, va_list arg)
{
  int res;
  set_no_long_double ();
  res = __vdprintf_chk (d, flag, fmt, arg);
  clear_no_long_double ();
  return res;
}
Beispiel #2
0
/* Write formatted output to D, according to the format string FORMAT.  */
int
__dprintf_chk (int d, int flags, const char *format, ...)
{
  va_list arg;
  int done;

  va_start (arg, format);
  done = __vdprintf_chk (d, flags, format, arg);
  va_end (arg);

  return done;
}