summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/cygxdr.cc
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/cygxdr.cc')
-rw-r--r--winsup/cygwin/cygxdr.cc24
1 files changed, 0 insertions, 24 deletions
diff --git a/winsup/cygwin/cygxdr.cc b/winsup/cygwin/cygxdr.cc
deleted file mode 100644
index aa4e81120..000000000
--- a/winsup/cygwin/cygxdr.cc
+++ /dev/null
@@ -1,24 +0,0 @@
-/* cygxdr.cc:
-
- Copyright 2010 Red Hat, Inc.
-
-This file is part of Cygwin.
-
-This software is a copyrighted work licensed under the terms of the
-Cygwin license. Please consult the file "CYGWIN_LICENSE" for
-details. */
-
-#include "winsup.h"
-#include <stdarg.h>
-#include <stdio.h>
-#include "cygxdr.h"
-
-extern "C" void
-cygxdr_vwarnx (const char * fmt, va_list ap)
-{
- /* Imitate glibc behavior for xdr: messages are printed to stderr */
- (void) fputs ("xdr-routines: ", stderr);
- (void) vfprintf (stderr, fmt, ap);
- (void) fputs ("\n", stderr);
-}
-