Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 8428 → Rev 8429

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