1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2025-01-03 14:56:34 -05: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. * Solaris.
*/ */
#ifdef _WIN32 #ifdef HAVE_UNISTD_H
#include <windows.h>
#else
#include <unistd.h> #include <unistd.h>
#endif #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 */ /* Make sure we define 64 bit types */
#ifdef _WIN32 #ifdef _WIN32

View File

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

View File

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

View File

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