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

24 lines
438 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
2018-06-21 20:33:47 +00:00
div_t div(register int numer, register int denom)
1989-05-16 13:13:53 +00:00
{
div_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;
}