20 lines
156 B
C++
20 lines
156 B
C++
/*
|
|
* math_32.cpp
|
|
*
|
|
*/
|
|
|
|
#include "math_32.h"
|
|
|
|
float math32_div(float a, float b)
|
|
{
|
|
return a/b;
|
|
}
|
|
|
|
float math32_mul(float a, float b)
|
|
{
|
|
return a*b;
|
|
}
|
|
|
|
|
|
|