aboutsummaryrefslogtreecommitdiffstats
path: root/src/listen.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-12-29 17:28:32 +0100
committerMax Kellermann <max@duempel.org>2008-12-29 17:28:32 +0100
commit95b3430f5277cf36bc9acc989e301ae302747a98 (patch)
tree8080eae01aa2d58873fa3de47a1eae8543f024b4 /src/listen.c
parent041b8f697bb31ce443de0e6f9e4eee892f9e2ac8 (diff)
downloadmpd-95b3430f5277cf36bc9acc989e301ae302747a98.tar.gz
mpd-95b3430f5277cf36bc9acc989e301ae302747a98.tar.xz
mpd-95b3430f5277cf36bc9acc989e301ae302747a98.zip
removed os_compat.h
Only include headers which are really needed. os_compat.h aimed to make MPD easily portable, but was never actually made portable.
Diffstat (limited to 'src/listen.c')
-rw-r--r--src/listen.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/listen.c b/src/listen.c
index 5a2b8d3da..c0c514f2d 100644
--- a/src/listen.c
+++ b/src/listen.c
@@ -21,9 +21,15 @@
#include "conf.h"
#include "log.h"
#include "utils.h"
-#include "os_compat.h"
-
-#include "../config.h"
+#include "config.h"
+
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <string.h>
+#include <netinet/in.h>
+#include <sys/un.h>
+#include <netdb.h>
#define MAXHOSTNAME 1024