1 /* $NetBSD: Lint_flt_rounds.c,v 1.4 2024/01/20 14:52:47 christos Exp $ */ 2 3 /* 4 * This file placed in the public domain. 5 * Chris Demetriou, November 5, 1997. 6 */ 7 #include <float.h> 8 9 /*ARGSUSED*/ 10 int 11 __flt_rounds(void) 12 { 13 return (0); 14 } 15