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