1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-29 04:25:55 -04:00
icecast-server/src/compat.h

17 lines
348 B
C
Raw Normal View History

/* compat.h
*
* This file contains most of the ugliness for header portability
* and common types across various systems like Win32, Linux and
* Solaris.
*/
/* Make sure we define 64 bit types */
#ifdef _WIN32
# define int64_t __int64
# define uint64_t unsigned __int64
#else
# ifdef HAVE_STDINT_H
# include <stdint.h>
# endif
#endif