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

int
attribute_hidden
__sprintf_chk (char *s, int flag, size_t slen, const char *fmt, ...)
{
  va_list arg;
  int done;

  va_start (arg, fmt);
  done = __nldbl___vsprintf_chk (s, flag, slen, fmt, arg);
  va_end (arg);

  return done;
}