mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 12:59:21 +08:00
007e23d639
Create subdirs and move files accordingly: - DevDocs: doc files - fhandler: fhandler sources, split fhandler.cc into base.cc and null.cc - local_includes: local include files - scripts: scripts called during build - sec: security sources Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
24 lines
396 B
C
24 lines
396 B
C
/* cygxdr.h:
|
|
|
|
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. */
|
|
#ifndef _CYGXDR_H
|
|
#define _CYGXDR_H
|
|
|
|
extern "C"
|
|
{
|
|
|
|
typedef void (*xdr_vprintf_t)(const char *, va_list);
|
|
|
|
xdr_vprintf_t xdr_set_vprintf (xdr_vprintf_t);
|
|
|
|
void cygxdr_vwarnx (const char *, va_list);
|
|
|
|
}
|
|
|
|
#endif
|
|
|