1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

minor header cleanup

svn path=/icecast/trunk/icecast/; revision=14219
This commit is contained in:
Karl Heyes 2007-11-23 03:17:39 +00:00
parent 6ee33215e8
commit 89dac2e3cf
4 changed files with 12 additions and 7 deletions

View File

@ -20,12 +20,20 @@
* Solaris.
*/
#ifdef _WIN32
#include <windows.h>
#else
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>
# endif
#endif
/* Make sure we define 64 bit types */
#ifdef _WIN32

View File

@ -19,7 +19,6 @@
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <time.h>
#ifdef HAVE_POLL
#include <sys/poll.h>
#endif
@ -27,7 +26,6 @@
#include <sys/stat.h>
#ifndef _WIN32
#include <sys/time.h>
#include <sys/socket.h>
#include <netinet/in.h>
#else

View File

@ -56,6 +56,7 @@
#ifdef _WIN32
/* For getpid() */
#include <process.h>
#include <windows.h>
#define snprintf _snprintf
#define getpid _getpid
#endif

View File

@ -25,11 +25,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <sys/types.h>
#ifndef _WIN32
#include <sys/time.h>
#include <sys/socket.h>
#include <netinet/in.h>
#else