diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-05-26 23:23:26 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-05-26 23:23:26 +0000 |
commit | 54b3c65e50e38fe278c2f539571ac830c133392b (patch) | |
tree | cbddb12719a0489a198b9c122129df9e8f7b1f05 | |
parent | 11b41ccd0ee1f5f7176f624d45add75d633709d1 (diff) | |
download | xine-lib-54b3c65e50e38fe278c2f539571ac830c133392b.tar.gz xine-lib-54b3c65e50e38fe278c2f539571ac830c133392b.tar.bz2 |
prevent clash with cygwin defined types
CVS patchset: 4957
CVS date: 2003/05/26 23:23:26
-rw-r--r-- | src/libfaad/common.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libfaad/common.h b/src/libfaad/common.h index 4683121e5..143641529 100644 --- a/src/libfaad/common.h +++ b/src/libfaad/common.h @@ -16,7 +16,7 @@ ** along with this program; if not, write to the Free Software ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ** -** $Id: common.h,v 1.7 2003/04/12 14:58:46 miguelfreitas Exp $ +** $Id: common.h,v 1.8 2003/05/26 23:23:26 miguelfreitas Exp $ **/ #ifndef __COMMON_H__ @@ -129,7 +129,9 @@ typedef float float32_t; # if HAVE_STDINT_H # include <stdint.h> # else +# if !defined(__int8_t_defined) /* we need these... */ +#define __int8_t_defined typedef unsigned long long uint64_t; typedef unsigned long uint32_t; typedef unsigned short uint16_t; @@ -138,6 +140,7 @@ typedef long long int64_t; typedef long int32_t; typedef short int16_t; typedef char int8_t; +# endif # endif #endif #if HAVE_UNISTD_H |