blob: aabf1ff8d56a789a06df390d7769583a62f4b1c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef OMC_OS_LINUX_H
#define OMC_OS_LINUX_H
#include <limits.h>
#include <sys/statvfs.h>
#include <sys/utsname.h>
#ifndef PATH_MAX
#include <linux/limits.h>
#endif
#endif
|