1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2025-02-02 15:07:36 -05:00

Fix: Corrected the include of <stdint.h> and <inttypes.h> to match IEEE Std 1003.1-2017 ("POSIX 7")

This commit is contained in:
Philipp Schafft 2018-06-16 13:12:19 +00:00 committed by Marvin Scholz
parent d1142e2c4d
commit 02fb2aa97b

View File

@ -47,9 +47,10 @@
# define PRId64 "I64d"
#else
# define PATH_SEPARATOR "/"
# if defined(HAVE_STDINT_H)
# ifdef HAVE_STDINT_H
# include <stdint.h>
# elif defined(HAVE_INTTYPES_H)
# endif
# ifdef HAVE_INTTYPES_H
# include <inttypes.h>
# endif
#endif