3 This file is part of Cygwin.
5 This software is a copyrighted work licensed under the terms of the
6 Cygwin license. Please consult the file "CYGWIN_LICENSE" for
15 cygxdr_vwarnx (const char * fmt
, va_list ap
)
17 /* Imitate glibc behavior for xdr: messages are printed to stderr */
18 (void) fputs ("xdr-routines: ", stderr
);
19 (void) vfprintf (stderr
, fmt
, ap
);
20 (void) fputs ("\n", stderr
);