1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00
icecast-server/src/os.h
Michael Smith f7ee1580ce Fix EOLs
svn path=/trunk/icecast/; revision=4132
2002-12-01 02:10:25 +00:00

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__ */