1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-13 18:36:09 +00:00

Fix build: Add required header and adjust preprocessor check.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28368 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-01-25 23:55:21 +00:00
parent fc8435ee6d
commit 7034529d9a

View File

@ -26,8 +26,9 @@
#include <inttypes.h>
#include <limits.h>
#include "config.h"
// Integer to float conversion through lrintf()
#ifdef HAVE_LRINTF
#if HAVE_LRINTF
#include <math.h>
long int lrintf(float);
#else