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

19 lines
254 B
C
Raw Normal View History

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