Home | History | Annotate | Line # | Download | only in gen
Lint_frexp.c revision 1.2.124.1
      1  1.2.124.1  perseant /*	$NetBSD: Lint_frexp.c,v 1.2.124.1 2025/08/02 05:54:36 perseant Exp $	*/
      2        1.1  matthias 
      3        1.1  matthias /*
      4        1.1  matthias  * This file placed in the public domain.
      5        1.1  matthias  * Matthias Pfaller, December 6, 1997.
      6        1.1  matthias  */
      7        1.1  matthias 
      8        1.1  matthias #include <math.h>
      9        1.1  matthias 
     10        1.2  christos /*ARGSUSED*/
     11        1.1  matthias double
     12  1.2.124.1  perseant frexp(double value, int *eptr)
     13        1.1  matthias {
     14  1.2.124.1  perseant 	return 0.0;
     15        1.1  matthias }
     16