1#include "nldbl-compat.h"
2
3int
4attribute_hidden
5weak_function
6snprintf (char *s, size_t maxlen, const char *fmt, ...)
7{
8 va_list arg;
9 int done;
10
11 va_start (arg, fmt);
12 done = __nldbl_vsnprintf (s, maxlen, fmt, arg);
13 va_end (arg);
14
15 return done;
16}
17

source code of glibc/sysdeps/ieee754/ldbl-opt/nldbl-snprintf.c