From 738940e802667f3f661d0ae1ce2f755a9f5cba36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Sun, 25 Feb 2007 19:30:55 +0000 Subject: [PATCH] remove [U]INT64_C definition Originally committed as revision 8127 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/common.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libavutil/common.h b/libavutil/common.h index eb531d3d73..c5c88c1902 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -63,11 +63,6 @@ #endif #endif -#ifndef INT64_C -#define INT64_C(c) (c ## LL) -#define UINT64_C(c) (c ## ULL) -#endif - //rounded divison & shift #define RSHIFT(a,b) ((a) > 0 ? ((a) + ((1<<(b))>>1))>>(b) : ((a) + ((1<<(b))>>1)-1)>>(b)) /* assume b>0 */