| commit | 72bf9612eacb940beaefbabc116c9f5b293d5ad1 | [log] [tgz] |
|---|---|---|
| author | Krzysztof Kosiński <krzysio@google.com> | Thu Nov 07 06:59:04 2024 +0000 |
| committer | Krzysztof Kosiński <krzysio@google.com> | Thu Nov 07 20:40:11 2024 +0000 |
| tree | f4535b338fe673030caa6b408042fdfe78ebc62e | |
| parent | 46fc805282265715266c256fbe34cf1a886c475f [diff] |
Add missing include for atoi(). Required to fix build in an internal repo where this code is imported with Copybara. Bug: 377642856 Test: presubmit Change-Id: I8955eb1eb84e72d388b48df0cd583c65e093eb13
diff --git a/process.cpp b/process.cpp index b8cabf6..09a93ff 100644 --- a/process.cpp +++ b/process.cpp
@@ -16,6 +16,8 @@ #include "android-base/process.h" +#include <stdlib.h> + namespace android { namespace base {