1#include "nldbl-compat.h"
2
3int
4attribute_hidden
5__printf_chk (int flag, const char *fmt, ...)
6{
7 va_list arg;
8 int done;
9
10 va_start (arg, fmt);
11 done = __nldbl___vfprintf_chk (stdout, flag, fmt, arg);
12 va_end (arg);
13
14 return done;
15}
16

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