blob: 3b3a15184587c51baf30265cddc24daec1da5108 (
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 <sys/wait.h>
#ifndef PATH_MAX
#include <linux/limits.h>
#endif
#endif
|