# HG changeset patch # User mru # Date 1152835480 0 # Node ID 6bddc9b2c9de440367d6a573a4e542e924bf604d # Parent b0cd22d2ad68c5a472b4ca8fe0cb5473f27ce0ed remove impossible #ifdef case diff -r b0cd22d2ad68 -r 6bddc9b2c9de common.h --- a/common.h Thu Jul 13 23:47:16 2006 +0000 +++ b/common.h Fri Jul 14 00:04:40 2006 +0000 @@ -176,18 +176,8 @@ /* 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