1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-11-03 04:17:18 -05:00

Fix metadata.c includes (esp. for stat())

This commit is contained in:
Moritz Grimm 2015-05-28 14:09:13 +02:00
parent d929bd65a7
commit 8b42aff63d

View File

@ -18,10 +18,21 @@
# include "config.h"
#endif
#include "ezstream.h"
#include "compat.h"
#include <sys/stat.h>
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#if defined(HAVE_LIBGEN_H) && !defined(__linux__)
# include <libgen.h>
#endif /* HAVE_LIBGEN_H && !__linux__ */
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_TAGLIB
# include <taglib/tag_c.h>
#endif /* HAVE_TAGLIB */
@ -30,8 +41,6 @@
#endif /* HAVE_VORBISFILE */
#include <shout/shout.h>
#include <assert.h>
#include "log.h"
#include "metadata.h"
#include "util.h"