/*	$NetBSD: Lint_ldexp.c,v 1.3 2024/12/01 16:16:56 rillig Exp $	*/

/*
 * This file placed in the public domain.
 * Matthias Pfaller, December 6, 1997.
 */

#include <math.h>

/*ARGSUSED*/
double
ldexp(double val, int exp)
{
	return 0.0;
}