Skip to content
This repository has been archived by the owner. It is now read-only.

fix: add missing limits.h includes to enable bulding on musl. #1187

Merged
merged 1 commit into from Jul 5, 2021
Merged
Changes from all commits
Commits
File filter
Filter file types
Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.

Always

Just for now

fix: add missing limits.h includes to enable bulding on musl.
  • Loading branch information
mssx86 committed Jul 1, 2021
commit b8e80a67ea1567d67765687f6b6f8b34ff074e52
@@ -13,6 +13,7 @@
#include <fcntl.h>
#include <sys/resource.h>
#include <stdarg.h>
#include <limits.h>

#ifdef __linux__
#include <sys/syscall.h>
@@ -1,4 +1,5 @@
#include <time.h>
#include <limits.h>

// This is the common include for platform/renderer specific skeletons(glfw.cpp, win.cpp etc.) and using cross platform things (like Windows directories wrapper, platform specific global arrays etc.)
// Functions that's different on glfw and win but have same signature, should be located on platform.h.