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

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

/* $NetBSD: Lint_abs.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*/
int
abs(j)
	int j;
{
	return (0);
}