Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1652 → Rev 1653

/uspace/trunk/softint/generic/division.c
26,6 → 26,15
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup softint SoftInt
* @brief Software implementation of basic arithmetic operations.
* @{
*/
/**
* @file
* SW implementation of 32 and 64 bit division and modulo.
*/
 
#include <division.h>
 
#define ABSVAL(x) ( (x) > 0 ? (x) : -(x))
185,4 → 194,5
return divandmod64(a, b, c);
}
 
 
/** @}
*/