Add missing w_fmod.h

This commit is contained in:
Henrique Gemignani Passos Lima 2022-10-03 15:15:06 +03:00
parent d26a30f186
commit 3256933c63
No known key found for this signature in database
GPG Key ID: E224F951761145F8
1 changed files with 14 additions and 0 deletions

14
include/Runtime/w_fmod.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef __W_FMOD_H__
#define __W_FMOD_H__
#ifndef __cplusplus
extern "C" {
#endif
float fmod(float, float);
#ifndef __cplusplus
}
#endif
#endif // __W_FMOD_H__