# HG changeset patch # User bellard # Date 1061740834 0 # Node ID 724e6477f2a81ebcc982e485e14c500b6199abd4 # Parent e101d1cffec6d5ef64e06eac62efcc6b4ee77a45 export int64_t_C as it is needed by libavformat.h diff -r e101d1cffec6 -r 724e6477f2a8 common.h --- a/common.h Sun Aug 24 13:57:42 2003 +0000 +++ b/common.h Sun Aug 24 16:00:34 2003 +0000 @@ -118,13 +118,13 @@ #include -#ifdef HAVE_AV_CONFIG_H - #ifndef int64_t_C #define int64_t_C(c) (c ## LL) #define uint64_t_C(c) (c ## ULL) #endif +#ifdef HAVE_AV_CONFIG_H + #ifdef USE_FASTMEMCPY #include "fastmemcpy.h" #endif @@ -138,13 +138,14 @@ /* unix */ -# include +#include -# ifdef HAVE_AV_CONFIG_H -# ifndef int64_t_C -# define int64_t_C(c) (c ## LL) -# define uint64_t_C(c) (c ## ULL) -# endif +#ifndef int64_t_C +#define int64_t_C(c) (c ## LL) +#define uint64_t_C(c) (c ## ULL) +#endif + +#ifdef HAVE_AV_CONFIG_H # ifdef USE_FASTMEMCPY # include "fastmemcpy.h"