mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-16 06:30:46 +00:00
8 lines
96 B
C
8 lines
96 B
C
#include <math.h>
|
|
#include "headers/sinf.h"
|
|
|
|
float sinf(float angle)
|
|
{
|
|
return _sinf(angle);
|
|
}
|