Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 801bcecb authored by Mark Salyzyn's avatar Mark Salyzyn
Browse files

logd: missing include for string.h

LogCommand.cpp gets string.h inherited from
private/android_filesystem_config.h it should
not rely on this in the future. The intent is
to move fs_config function into libcutils and
thus deprecate any need for string.h in this
include file.

Bug: 19908228
Change-Id: Iaf3a77298b56efd8004300b17e9a1faafad5b08b
parent 27cda9a5
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -17,6 +17,7 @@
#include <errno.h>
#include <errno.h>
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>


#include <private/android_filesystem_config.h>
#include <private/android_filesystem_config.h>