mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
10 lines
141 B
Plaintext
10 lines
141 B
Plaintext
module std::math;
|
|
|
|
extern func double _log10(double) @cname("log10");
|
|
|
|
public func double log10(double d) @inline
|
|
{
|
|
return _log10(d);
|
|
}
|
|
|