Files
Upsilon/liba/include/math.h
Romain Goyet fd0c6eaba3 Add a (fake) implementation of powf in liba
Change-Id: I14af6937fecfbe90ab053594e1269fcbc3681b1c
2016-03-18 16:52:02 +01:00

13 lines
146 B
C

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