Home | History | Annotate | Line # | Download | only in gen
Lint_ldexp.c revision 1.3
      1  1.3    rillig /*	$NetBSD: Lint_ldexp.c,v 1.3 2024/12/01 16:16:56 rillig 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.3    rillig ldexp(double val, int exp)
     13  1.1  matthias {
     14  1.3    rillig 	return 0.0;
     15  1.1  matthias }
     16