Home | History | Annotate | Line # | Download | only in stdlib
Lint_imaxabs.c revision 1.1.76.1
      1  1.1.76.1  perseant /*	$NetBSD: Lint_imaxabs.c,v 1.1.76.1 2025/08/02 05:54:40 perseant 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.76.1  perseant 	return 0;
     15       1.1      matt }
     16