summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Roberts2013-11-21 09:00:38 -0600
committerWilliam Roberts2013-11-25 11:25:47 -0600
commit5605cdade8dc8512c54f73863712b62582e6aaf4 (patch)
tree6ca7af3b5b9c0c72a93cbb9830c6d70da8392aa0 /logwrapper/logwrapper.c
parent66ed50af6870210ce013a5588a688434a5d48ee9 (diff)
downloadplatform-system-core-5605cdade8dc8512c54f73863712b62582e6aaf4.tar.gz
platform-system-core-5605cdade8dc8512c54f73863712b62582e6aaf4.tar.xz
platform-system-core-5605cdade8dc8512c54f73863712b62582e6aaf4.zip
logwrapper: fix missing include
Use of ECHILD with no definitive errno.h inclusion. Explicitly listing the errno.h header file rather then relying on the inclusion chain to do so. Change-Id: I5552acd928d17fc62192217a30ff2e4fab0b1936
Diffstat (limited to 'logwrapper/logwrapper.c')
-rw-r--r--logwrapper/logwrapper.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/logwrapper/logwrapper.c b/logwrapper/logwrapper.c
index d0d8d1471..db6cb4c3b 100644
--- a/logwrapper/logwrapper.c
+++ b/logwrapper/logwrapper.c
@@ -14,6 +14,7 @@
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 16
17#include <errno.h>
17#include <stdio.h> 18#include <stdio.h>
18#include <stdlib.h> 19#include <stdlib.h>
19#include <sys/wait.h> 20#include <sys/wait.h>