view include/math.h @ 150:e72f984619c7

Consolidated a lot of the defines which relate to the memory layout There is a new file (include/os/memLayout.h) which now includes just about all the #defines
author Jonathan Pevarnek <pevarnj@gmail.com>
date Wed, 02 Nov 2011 09:55:09 -0400
parents 550840bcc140
children
line wrap: on
line source

#ifndef __MATH_H
#define __MATH_H

double iPow(double base, int exponent);
double exp(double exp);
double log(double num);
double pow(double base, double exponent);

#endif //__MATH_H