diff options
author | Måns Rullgård <mans@mansr.com> | 2006-07-14 00:04:40 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-07-14 00:04:40 +0000 |
commit | 1dd590619ade0cf7894e01393ffbc6b79d39373c (patch) | |
tree | aab5a6f959c068d6e2976185a80e1feb50127a50 /libavutil | |
parent | b2b48c77caefa0641ea75d4d3f8dfc808dbb6d08 (diff) | |
download | ffmpeg-1dd590619ade0cf7894e01393ffbc6b79d39373c.tar.gz |
remove impossible #ifdef case
Originally committed as revision 5736 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/common.h | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/libavutil/common.h b/libavutil/common.h index 32cada44ae..3e92e298ad 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -176,18 +176,8 @@ typedef uint64_t uint_fast64_t; /* windows */ -# if !defined(__MINGW32__) && !defined(__CYGWIN__) -# define int64_t_C(c) (c ## i64) -# define uint64_t_C(c) (c ## i64) - -# ifdef HAVE_AV_CONFIG_H -# define inline __inline -# endif - -# else -# define int64_t_C(c) (c ## LL) -# define uint64_t_C(c) (c ## ULL) -# endif /* __MINGW32__ */ +# define int64_t_C(c) (c ## LL) +# define uint64_t_C(c) (c ## ULL) # ifdef HAVE_AV_CONFIG_H # ifdef _DEBUG |