diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2003-09-24 06:46:43 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2003-09-24 06:46:43 +0000 |
commit | a8c1408ff4d5cd298ea7f3fbf3a1ce5e81729090 (patch) | |
tree | 3b3dbd15be52e87274e9dd7659cdb33f96502fa2 /src/post/deinterlace/speedy.h | |
parent | 283389bd19123e650fe06b96c54e8f9e0c2ae029 (diff) | |
download | xine-lib-a8c1408ff4d5cd298ea7f3fbf3a1ce5e81729090.tar.gz xine-lib-a8c1408ff4d5cd298ea7f3fbf3a1ce5e81729090.tar.bz2 |
Use inttypes.h or stdint.h as appropriate.
CVS patchset: 5411
CVS date: 2003/09/24 06:46:43
Diffstat (limited to 'src/post/deinterlace/speedy.h')
-rw-r--r-- | src/post/deinterlace/speedy.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/post/deinterlace/speedy.h b/src/post/deinterlace/speedy.h index 3b835f5a6..7bc1a6535 100644 --- a/src/post/deinterlace/speedy.h +++ b/src/post/deinterlace/speedy.h @@ -19,10 +19,10 @@ #ifndef SPEEDY_H_INCLUDED #define SPEEDY_H_INCLUDED -#if defined (__SVR4) && defined (__sun) -# include <sys/int_types.h> +#if HAVE_INTTYPES_H +#include <inttypes.h> #else -# include <stdint.h> +#include <stdint.h> #endif #ifdef __cplusplus |