remove old msvc cruft
authorMåns Rullgård <mans@mansr.com>
Thu, 13 Jul 2006 23:47:16 +0000 (23:47 +0000)
committerMåns Rullgård <mans@mansr.com>
Thu, 13 Jul 2006 23:47:16 +0000 (23:47 +0000)
Originally committed as revision 5735 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/common.h

index d07f5f1..32cada4 100644 (file)
     typedef unsigned char  uint8_t;
     typedef unsigned short uint16_t;
     typedef unsigned int   uint32_t;
-
-#   ifdef __MINGW32__
-        typedef signed __int64   int64_t;
-        typedef unsigned __int64 uint64_t;
-#   else /* other OS */
-        typedef signed long long   int64_t;
-        typedef unsigned long long uint64_t;
-#   endif /* other OS */
+    typedef signed long long   int64_t;
+    typedef unsigned long long uint64_t;
 #endif /* EMULATE_INTTYPES */
 
 #ifndef PRId64