# HG changeset patch # User diego # Date 1232963654 0 # Node ID 34b7297904acf34282cdd7f2eae89f498d4a30f3 # Parent 1a5cd79b2e6e52f2d8c23ea7a837ccd83d3e0ced Drop HAVE_LRINTF check, lrintf is used without checking in other places. diff -r 1a5cd79b2e6e -r 34b7297904ac libaf/af_format.c --- a/libaf/af_format.c Mon Jan 26 09:40:04 2009 +0000 +++ b/libaf/af_format.c Mon Jan 26 09:54:14 2009 +0000 @@ -25,16 +25,9 @@ #include #include #include +#include #include "config.h" -// Integer to float conversion through lrintf() -#if HAVE_LRINTF -#include -long int lrintf(float); -#else -#define lrintf(x) ((int)(x)) -#endif - #include "af.h" #include "mpbswap.h" #include "libvo/fastmemcpy.h"