mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-14 19:24:06 +03:00
6761eeea4d
- doc/FAQ.html: added an entry for compilation from CVS Daniel
28 lines
490 B
C
28 lines
490 B
C
/*
|
|
* libxml.h: internal header only used during the compilation of libxml
|
|
*
|
|
* See COPYRIGHT for the status of this software
|
|
*
|
|
* Author: breese@users.sourceforge.net
|
|
*/
|
|
|
|
#ifndef __XML_LIBXML_H__
|
|
#define __XML_LIBXML_H__
|
|
|
|
#if defined(WIN32) && !defined(__CYGWIN__)
|
|
#include "win32config.h"
|
|
#else
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <libxml/xmlversion.h>
|
|
|
|
#ifdef WITHOUT_TRIO
|
|
#include <stdio.h>
|
|
#else
|
|
#define TRIO_REPLACE_STDIO
|
|
#include "trio.h"
|
|
#endif
|
|
|
|
#endif /* ! __XML_LIBXML_H__ */
|