mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
f7ee1580ce
svn path=/trunk/icecast/; revision=4132
19 lines
254 B
C
19 lines
254 B
C
#ifndef __OS_H__
|
|
#define __OS_H__
|
|
|
|
#ifdef _WIN32
|
|
#include <windows.h>
|
|
#else
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
#define PATH_SEPARATOR "\\"
|
|
#define size_t int
|
|
#define ssize_t int
|
|
#else
|
|
#define PATH_SEPARATOR "/"
|
|
#endif
|
|
|
|
#endif /* __GLOBALS_H__ */
|