mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05: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:
parent
5323b27c95
commit
287ed24dd8
@ -23,7 +23,9 @@
|
|||||||
# define uint64_t unsigned __int64
|
# define uint64_t unsigned __int64
|
||||||
# define uint32_t unsigned int
|
# define uint32_t unsigned int
|
||||||
#else
|
#else
|
||||||
# ifdef HAVE_STDINT_H
|
# if defined(HAVE_STDINT_H)
|
||||||
# include <stdint.h>
|
# include <stdint.h>
|
||||||
|
# elif defined(HAVE_INTTYPES_H)
|
||||||
|
# include <inttypes.h>
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user