Browse Source

remove impossible #ifdef case

Originally committed as revision 5736 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård 19 years ago
parent
commit
1dd590619a
1 changed files with 2 additions and 12 deletions
  1. +2
    -12
      libavutil/common.h

+ 2
- 12
libavutil/common.h View File

@@ -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


Loading…
Cancel
Save