diff options
-rw-r--r-- | src/missing.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/missing.h b/src/missing.h index 02b31b7434..23ab39e653 100644 --- a/src/missing.h +++ b/src/missing.h @@ -80,6 +80,10 @@ #define TIOCVHANGUP 0x5437 #endif +#ifndef IP_TRANSPARENT +#define IP_TRANSPARENT 19 +#endif + static inline int pivot_root(const char *new_root, const char *put_old) { return syscall(SYS_pivot_root, new_root, put_old); } |