mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-20 10:42:21 +00:00
8 lines
114 B
C
8 lines
114 B
C
#include <math.h>
|
|
#include "headers/fmaf.h"
|
|
|
|
float fmaf(float x, float y, float z)
|
|
{
|
|
return _fmaf(x, y, z);
|
|
}
|