| commit | 5ca52f7771eb36c1bf135655f7d665179eb7b4db | [log] [tgz] |
|---|---|---|
| author | Douglas Dawson <dougnd@gmail.com> | Wed Jul 13 16:38:40 2016 +0000 |
| committer | Kristina Chodorow <kchodorow@google.com> | Thu Jul 14 11:12:28 2016 +0000 |
| tree | bc5a9736aa98eae7f3df6e87bd4dbc9707d82d3c | |
| parent | 93899fea88d454619be419f589a8420990ca77b7 [diff] [blame] |
Added include requirements for errno, printf, getenv Closes #1419. -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/1419 MOS_MIGRATED_REVID=127326203
diff --git a/src/main/cpp/blaze_util_linux.cc b/src/main/cpp/blaze_util_linux.cc index 0685037..aea1943 100644 --- a/src/main/cpp/blaze_util_linux.cc +++ b/src/main/cpp/blaze_util_linux.cc
@@ -16,6 +16,8 @@ #include <limits.h> #include <pwd.h> #include <signal.h> +#include <stdio.h> +#include <stdlib.h> #include <string.h> // strerror #include <sys/socket.h> #include <sys/statfs.h>