/* $Id$ */ /* Release $Name$ */ /* ldiv( int, int ) This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. */ #include #ifndef REGTEST ldiv_t ldiv( long int numer, long int denom ) { ldiv_t rc; rc.quot = numer / denom; rc.rem = numer % denom; /* TODO: pre-C99 compilers might require modulus correction */ return rc; } #endif #ifdef TEST #include <_PDCLIB_test.h> int main() { int NO_TESTDRIVER = 0; BEGIN_TESTS; TESTCASE( NO_TESTDRIVER ); return TEST_RESULTS; } #endif