Cygwin: (mostly) drop NT4 and Samba < 3.0 support
[newlib-cygwin.git] / winsup / cygwin / cygxdr.cc
blobd75c5998705f71412bbcd760a95f23f5f08e4a48
1 /* cygxdr.cc:
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
7 details. */
9 #include "winsup.h"
10 #include <stdarg.h>
11 #include <stdio.h>
12 #include "cygxdr.h"
14 extern "C" void
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);