Add missing void keyword to keep -Wold-style-definition happy.

This commit is contained in:
Ed Schouten 2015-01-11 23:01:49 +01:00
parent ee2976996d
commit c2154fd3f3
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
#include "math_private.h"
DLLEXPORT int isopenlibm() {
DLLEXPORT int isopenlibm(void) {
return 1;
}