mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 00:47:30 +00:00
Fix build on macOS 10.10 Yosemite
This commit is contained in:
parent
09685c3682
commit
42e177dc1b
1 changed files with 4 additions and 0 deletions
|
@ -8,6 +8,10 @@
|
|||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
#ifdef __APPLE__
|
||||
// This include is required on macOS 10.10 for locale_t
|
||||
#include <xlocale.h>
|
||||
#endif
|
||||
|
||||
#include <ctime>
|
||||
#include <functional>
|
||||
|
|
Loading…
Reference in a new issue