1
0
mirror of https://github.com/prirun/p50em.git synced 2026-01-22 18:21:22 +00:00

fp.h: always needs to return a result now (bs changes)

This commit is contained in:
Jim 2012-06-04 14:36:02 -04:00
parent e60628f2d1
commit 1f09a815b5

1
fp.h
View File

@ -331,6 +331,7 @@ unsigned long long frn(unsigned long long dp, int *oflow) {
frac64 = norm(frac64, oflow);
return frac64;
}
return dp;
}
}