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

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

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

  return done;
}