src/libFLAC/memory.c : Wrap inclusion of <stdint.h> in #ifdef.

Lack of the #ifdef was causing problems on VS2008.
This commit is contained in:
Erik de Castro Lopo
2014-05-11 03:06:45 -07:00
parent d4d5060e9e
commit 7963120a0d

View File

@@ -34,7 +34,9 @@
# include <config.h>
#endif
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include "private/memory.h"
#include "FLAC/assert.h"