changeset 72:6bddc9b2c9de libavutil

remove impossible #ifdef case
author mru
date Fri, 14 Jul 2006 00:04:40 +0000
parents b0cd22d2ad68
children 9718c0d015cc
files common.h
diffstat 1 files changed, 2 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- 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