diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-02-13 09:36:59 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-02-13 09:40:29 -0500 |
commit | 4959d9c251ce603b8e32e7532559ad2a7867b6ab (patch) | |
tree | 28b21dbe61b1676f3c9b73514f934a77717776d6 /include/os_linux.h | |
parent | 4527a13debf7ca4c6c193bf2e82351bf3e9e3ea8 (diff) | |
download | stasis-4959d9c251ce603b8e32e7532559ad2a7867b6ab.tar.gz |
Compatibility changes
Diffstat (limited to 'include/os_linux.h')
-rw-r--r-- | include/os_linux.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/os_linux.h b/include/os_linux.h new file mode 100644 index 0000000..8c3aed7 --- /dev/null +++ b/include/os_linux.h @@ -0,0 +1,10 @@ +#ifndef OMC_OS_LINUX_H +#define OMC_OS_LINUX_H + +#include <limits.h> + +#ifndef PATH_MAX +#include <linux/limits.h> +#endif + +#endif |