Commit 4b977e81 authored by Dane Springmeyer's avatar Dane Springmeyer Committed by GitHub

Fix missing errno.h header

Fixes this compile error:

```
../src/cc/frontends/clang/kbuild_helper.h:40:64: error: use of undeclared identifier 'errno'
      fprintf(stderr, "chdir(%s): %s\n", dst.c_str(), strerror(errno));
```
parent 3a943275
......@@ -18,6 +18,7 @@
#include <string>
#include <vector>
#include <unistd.h>
#include <errno.h>
namespace ebpf {
......
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