Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 4679 → Rev 4680

/contrib/media/updf/lrintf.c
0,0 → 1,5
#include <math.h>
 
long long int lrintf(float x) {
return floor(x);
}