comparison libmpdemux/demux_xmms.c @ 8623:440301fef3fe

Added/reordered #includes to silence warnings about "implicit declaration".
author rathann
date Sat, 28 Dec 2002 18:51:10 +0000
parents 668161e96ab9
children 383e3cc8ee88
comparison
equal deleted inserted replaced
8622:871e07a43f58 8623:440301fef3fe
7 #include <unistd.h> 7 #include <unistd.h>
8 #include <pthread.h> 8 #include <pthread.h>
9 #include <dlfcn.h> 9 #include <dlfcn.h>
10 #include <dirent.h> 10 #include <dirent.h>
11 #include <inttypes.h> 11 #include <inttypes.h>
12 #include <string.h>
13 #include <sys/stat.h>
12 14
13 #include "../cfgparser.h" 15 #include "../cfgparser.h"
14 #include "../libao2/afmt.h" 16 #include "../libao2/afmt.h"
15 #include "stream.h" 17 #include "stream.h"
16 #include "demuxer.h" 18 #include "demuxer.h"
17 #include "stheader.h" 19 #include "stheader.h"
18
19 #include <dirent.h>
20 #include <string.h>
21 #include <sys/stat.h>
22 20
23 #define XMMS_PACKETSIZE 65536 // some plugins won't play if this is too small 21 #define XMMS_PACKETSIZE 65536 // some plugins won't play if this is too small
24 22
25 #include "demux_xmms_plugin.h" 23 #include "demux_xmms_plugin.h"
26 24