ack/lang/cem/libcc.ansi/core/stdlib/ldiv.c

25 lines
443 B
C
Raw Normal View History

1989-05-16 13:13:53 +00:00
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
1994-06-24 14:02:31 +00:00
/* $Id$ */
1989-05-16 13:13:53 +00:00
2018-06-21 20:33:47 +00:00
#include <stdlib.h>
1989-05-16 13:13:53 +00:00
ldiv_t
ldiv(register long numer, register long denom)
{
ldiv_t r;
2018-06-21 20:33:47 +00:00
r.quot = numer / denom; /* might trap if denom == 0 */
r.rem = numer % denom;
2018-06-21 20:33:47 +00:00
if (r.rem != 0 && (numer > 0) != (r.rem > 0))
{
r.quot++;
r.rem -= denom;
1990-03-01 16:32:22 +00:00
}
1989-05-16 13:13:53 +00:00
return r;
}