Files
Upsilon/liba/include/math.h
Romain Goyet 39f6990f76 [liba] Add powf from FreeBSD and its dependencies
Change-Id: I8cfe65edfb95232e6a6bc66dcc2f908a3135ed14
2016-10-07 17:11:52 +02:00

18 lines
275 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);
float fabsf(float x);
float sqrtf(float x);
float scalbnf(float x, int n);
float copysignf(float x, float y);
LIBA_END_DECLS
#endif