root/lib/libc/stdlib/Lint_llabs.c
/*      $NetBSD: Lint_llabs.c,v 1.3 2024/12/01 16:16:56 rillig Exp $    */

/*
 * This file placed in the public domain.
 * Klaus Klein, March 6, 2000.
 */

#include <stdlib.h>

/* ARGSUSED */
long long int
llabs(long long int j)
{
        return 0;
}