NetBSD-5.0.2/lib/libc/stdlib/Lint_div.c

Compare this file to the similar file:
Show the results in this format:

/* $NetBSD: Lint_div.c,v 1.2 2000/06/14 06:49:07 cgd Exp $ */

/*
 * This file placed in the public domain.
 * Chris Demetriou, November 5, 1997.
 */

#include <stdlib.h>

/*ARGSUSED*/
div_t
div(num, denom)
	int num, denom;
{
	div_t rv = { 0 };
	return (rv);
}