mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-06 04:29:25 -04:00
18 lines
264 B
C
18 lines
264 B
C
/* $NetBSD: Lint_fpgetmask.c,v 1.3 2012/06/24 15:26:03 christos Exp $ */
|
|
|
|
/*
|
|
* This file placed in the public domain.
|
|
* Chris Demetriou, November 5, 1997.
|
|
*/
|
|
|
|
#include <ieeefp.h>
|
|
|
|
/*ARGSUSED*/
|
|
fp_except
|
|
fpgetmask(void)
|
|
{
|
|
fp_except rv = { 0 };
|
|
|
|
return (rv);
|
|
}
|