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