1
0
mirror of https://github.com/janet-lang/janet synced 2024-07-05 19:43:14 +00:00

JANET_BSD not defined on apple.

This commit is contained in:
Calvin Rose 2024-05-18 14:24:51 -05:00
parent e6b73f8cd1
commit ea5d4fd3af

View File

@ -33,7 +33,6 @@
#include <time.h>
#include <fcntl.h>
#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
@ -42,6 +41,9 @@
#ifdef JANET_BSD
#include <sys/sysctl.h>
#endif
#if defined(JANET_BSD) || defined(JANET_APPLE)
#include <xlocale.h>
#else
#include <locale.h>