17 lines
164 B
C
17 lines
164 B
C
/*
|
|
* math_32.h
|
|
*
|
|
*/
|
|
|
|
#ifndef MATH_32_H_
|
|
#define MATH_32_H_
|
|
|
|
float math32_div(float a, float b);
|
|
|
|
float math32_mul(float a, float b);
|
|
|
|
|
|
|
|
|
|
#endif /* MATH_32_H_ */
|