toDaysWadUnsafe

Git Source

Takes an integer amount of seconds and converts it to a wad amount of days.

Will not revert on overflow, only use where overflow is not possible.

Not meant for negative second amounts, it assumes x is positive.

function toDaysWadUnsafe(uint256 x) pure returns (int256 r);