diff --git a/libavutil/common.h b/libavutil/common.h
index 32cada44ae97d27ef568562f707ec16ebc287594..3e92e298addb04f2600fc1a842d06f9c8f4877cf 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