blob: 2a295a4582b5e3f28be9f7f1cd9c77d36e3ed176 [file] [log] [blame]
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#include <math.h>
float log10f(float _X)
{
return ((float)log10((double)_X));
}