mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-12 18:59:06 +00:00
15 lines
164 B
C
15 lines
164 B
C
#ifndef __W_FMOD_H__
|
|
#define __W_FMOD_H__
|
|
|
|
#ifndef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
float fmod(float, float);
|
|
|
|
#ifndef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __W_FMOD_H__
|