Add the Missing Header

`stderror` is used in this file and it is defined in `string.h/cstring`, so
the header file needs to be directly included.

Test: build
Bug: 285204695
Change-Id: Idf34126626ad0e9bb397df3d5da50439bf18381d
This commit is contained in:
Hao Chen 2023-05-31 14:18:59 -07:00
parent da739b2eea
commit b3e1993ee5

View file

@ -15,6 +15,8 @@
*/
#include <utils/Errors.h>
#include <string.h>
namespace android {
std::string statusToString(status_t s) {