Compilation problem caused by conflicting typedefs for uint32_t

(unsigned long vs. unsigned int).
This commit is contained in:
Armin Rigo 2006-10-04 10:23:57 +00:00
parent 10525ad313
commit c6f2f884b4
2 changed files with 4 additions and 0 deletions

View File

@ -28,7 +28,9 @@
#if defined(linux)
#include <linux/soundcard.h>
#ifndef HAVE_STDINT_H
typedef unsigned long uint32_t;
#endif
#elif defined(__FreeBSD__)
#include <machine/soundcard.h>

View File

@ -34,7 +34,9 @@
#if defined(linux)
#ifndef HAVE_STDINT_H
typedef unsigned long uint32_t;
#endif
#elif defined(__FreeBSD__)