root/lib/libc/gen/Lint_fpgetmask.c
/* $NetBSD: Lint_fpgetmask.c,v 1.4 2024/12/01 16:16:56 rillig Exp $ */

/*
 * This file placed in the public domain.
 * Chris Demetriou, November 5, 1997.
 */

#include <ieeefp.h>

fp_except
fpgetmask(void)
{
        fp_except rv = { 0 };

        return rv;
}