Files
Upsilon/liba/include/math.h
Romain Goyet 6ba4c55832 [liba] Use roundf from OpenBSD
Change-Id: I00fbcadffcc54b2af820de203be6c5880f12a884
2016-10-25 11:38:13 +02:00

27 lines
448 B
C

#ifndef LIBA_MATH_H
#define LIBA_MATH_H
#include "private/macros.h"
LIBA_BEGIN_DECLS
int isinff(float x);
int isnanf(float x);
float copysignf(float x, float y);
float cosf(float x);
float fabsf(float x);
float floorf(float x);
float log10f(float x);
float logf(float x);
float powf(float x, float y);
float roundf(float x);
float scalbnf(float x, int n);
float sinf(float x);
float sqrtf(float x);
float tanf(float x);
LIBA_END_DECLS
#endif