diff options
| author | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-07-05 20:50:18 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-05 20:50:18 +0300 |
| commit | 386b113603305ed968e239e3710b62cc07f290dd (patch) | |
| tree | a421cccbd8f95531e6baf7c4776aee85b0109da3 /src/core | |
| parent | fix cmake workflow (diff) | |
| parent | fix: add missing limits.h includes to enable bulding on musl. (diff) | |
| download | re3-386b113603305ed968e239e3710b62cc07f290dd.tar.gz | |
Merge pull request #1187 from mssx86/musl_fix
fix: add missing limits.h includes to enable bulding on musl.
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/CdStreamPosix.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/CdStreamPosix.cpp b/src/core/CdStreamPosix.cpp index 30fe06a0..bc9129eb 100644 --- a/src/core/CdStreamPosix.cpp +++ b/src/core/CdStreamPosix.cpp @@ -13,6 +13,7 @@ #include <fcntl.h> #include <sys/resource.h> #include <stdarg.h> +#include <limits.h> #ifdef __linux__ #include <sys/syscall.h> |
