1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

Include inttypes.h from the compatibility header if it's available and stdint.h is not. This

provides the stdint types on solaris and a number of other non-C99 platforms.

svn path=/trunk/icecast/; revision=5925
This commit is contained in:
giles 2004-03-09 18:33:06 +00:00
parent 5323b27c95
commit 287ed24dd8

View File

@ -23,7 +23,9 @@
# define uint64_t unsigned __int64
# define uint32_t unsigned int
#else
# ifdef HAVE_STDINT_H
# if defined(HAVE_STDINT_H)
# include <stdint.h>
# elif defined(HAVE_INTTYPES_H)
# include <inttypes.h>
# endif
#endif