heptagon/examples/extern_C/mathext.c
2010-07-27 11:12:33 +02:00

8 lines
99 B
C

#include <math.h>
#include "mathext.h"
void mycos(float a, mycos_out *out)
{
out->o = cos(a);
}