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