Files
Upsilon/liba/include/math.h
Romain Goyet 9fd2d9e68c [liba] Use log10f from FreeBSD's msun library
Change-Id: Ief92bbab53377e093a381aed5e92ab00c894b9d0
2016-10-07 13:54:56 +02:00

14 lines
165 B
C

#ifndef LIBA_MATH_H
#define LIBA_MATH_H
#include "private/macros.h"
LIBA_BEGIN_DECLS
float log10f(float x);
float powf(float x, float y);
LIBA_END_DECLS
#endif