Commit 3a943275 authored by Dane Springmeyer's avatar Dane Springmeyer Committed by GitHub

Add missing sched.h include for CLONE_NEWNS

This fixes the compile with `-stdlib=libc++`. Without this header the build fails with:

```
../src/cc/ns_guard.cc:75:30: error: use of undeclared identifier 'CLONE_NEWNS'
```
parent e6c75684
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
*/ */
#include <fcntl.h> #include <fcntl.h>
#include <sched.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <string> #include <string>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment