Home | History | Annotate | Line # | Download | only in stdlib
Lint_imaxabs.c revision 1.1.2.2
      1  1.1.2.2  wrstuden /*	$NetBSD: Lint_imaxabs.c,v 1.1.2.2 2008/09/18 04:39:22 wrstuden Exp $	*/
      2  1.1.2.2  wrstuden 
      3  1.1.2.2  wrstuden /*
      4  1.1.2.2  wrstuden  * This file placed in the public domain.
      5  1.1.2.2  wrstuden  * Matt Thomas, August 4, 2008.
      6  1.1.2.2  wrstuden  */
      7  1.1.2.2  wrstuden 
      8  1.1.2.2  wrstuden #include <inttypes.h>
      9  1.1.2.2  wrstuden 
     10  1.1.2.2  wrstuden /* ARGSUSED */
     11  1.1.2.2  wrstuden intmax_t
     12  1.1.2.2  wrstuden imaxabs(intmax_t j)
     13  1.1.2.2  wrstuden {
     14  1.1.2.2  wrstuden 	return (0);
     15  1.1.2.2  wrstuden }
     16