mirror of
https://github.com/buhman/nds.git
synced 2025-06-18 14:35:38 -04:00
11 lines
140 B
C
11 lines
140 B
C
#pragma once
|
|
|
|
#define abs __builtin_abs
|
|
|
|
int cos_fp12(int theta);
|
|
|
|
static inline int sin_fp12(int theta)
|
|
{
|
|
return cos_fp12(theta - 90);
|
|
}
|