1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-07-29 15:41:13 +03:00

xsltproc: Remove unneeded includes

This commit is contained in:
Nick Wellnhofer
2024-06-16 15:42:31 +02:00
parent 200ee26982
commit 33ac060d01

View File

@ -15,19 +15,16 @@
#include <stdlib.h>
#include <stdarg.h>
#include <time.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#ifdef HAVE_SYS_TIMEB_H
#include <sys/timeb.h>
#endif
#if defined(_WIN32)
#include <fcntl.h>
#endif
#include <libxml/xmlmemory.h>
#include <libxml/debugXML.h>
#include <libxml/HTMLtree.h>
@ -51,10 +48,6 @@
#include <libexslt/exsltconfig.h>
#ifdef HAVE_SYS_TIMEB_H
#include <sys/timeb.h>
#endif
#ifndef STDIN_FILENO
#define STDIN_FILENO 0
#endif