summaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/ldbl-opt/nldbl-fprintf_chk.c
blob: 43a76181836604d37ca0d4daa7238c3371fee1fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "nldbl-compat.h"

int
attribute_hidden
__fprintf_chk (FILE *stream, int flag, const char *fmt, ...)
{
  va_list arg;
  int done;

  va_start (arg, fmt);
  done = __nldbl___vfprintf_chk (stream, flag, fmt, arg);
  va_end (arg);

  return done;
}