xref: /netbsd-src/lib/libc/stdlib/Lint_imaxabs.c (revision f1542991df4ea18be5a5bd3e9c5e7ca553b4e14f)
1 /*	$NetBSD: Lint_imaxabs.c,v 1.2 2024/12/01 16:16:56 rillig Exp $	*/
2 
3 /*
4  * This file placed in the public domain.
5  * Matt Thomas, August 4, 2008.
6  */
7 
8 #include <inttypes.h>
9 
10 /* ARGSUSED */
11 intmax_t
12 imaxabs(intmax_t j)
13 {
14 	return 0;
15 }
16