summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/div.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/stdlib/div.c')
-rw-r--r--src/lib/libc/stdlib/div.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libc/stdlib/div.c b/src/lib/libc/stdlib/div.c
index 9e070dcd64..32c53dff03 100644
--- a/src/lib/libc/stdlib/div.c
+++ b/src/lib/libc/stdlib/div.c
@@ -31,14 +31,13 @@
31 */ 31 */
32 32
33#if defined(LIBC_SCCS) && !defined(lint) 33#if defined(LIBC_SCCS) && !defined(lint)
34static char *rcsid = "$OpenBSD: div.c,v 1.3 2003/06/02 20:18:37 millert Exp $"; 34static char *rcsid = "$OpenBSD: div.c,v 1.4 2005/03/30 18:51:49 pat Exp $";
35#endif /* LIBC_SCCS and not lint */ 35#endif /* LIBC_SCCS and not lint */
36 36
37#include <stdlib.h> /* div_t */ 37#include <stdlib.h> /* div_t */
38 38
39div_t 39div_t
40div(num, denom) 40div(int num, int denom)
41 int num, denom;
42{ 41{
43 div_t r; 42 div_t r;
44 43