Commit 773fd2f7 authored by anotherguest's avatar anotherguest

Add function def of sinf,cosf and tanf. Symbian is missing these functions in...

Add function def of sinf,cosf and tanf. Symbian is missing these functions in its math.h file, but should it be located some where else?
parent 67d11412
......@@ -40,6 +40,12 @@
#include <math.h>
#include <string.h>
#ifdef __SYMBIAN32__
extern float cosf (float);
extern float sinf (float);
extern float tanf (float);
#endif
#define PI 3.141592f
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment