Move math.h include out of windows ifdef

This commit is contained in:
Calvin Rose 2020-11-15 10:21:37 -06:00
parent 1759151875
commit d7af4596e1
1 changed files with 1 additions and 1 deletions

View File

@ -32,10 +32,10 @@
#ifdef JANET_EV
/* Includes */
#include <math.h>
#ifdef JANET_WINDOWS
#include <winsock2.h>
#include <windows.h>
#include <math.h>
#else
#include <limits.h>
#include <errno.h>