heptagon/examples/extern_C/mathext.c

8 lines
99 B
C
Raw Normal View History

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