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

Commit b93e5812 authored by Olivier Bailly's avatar Olivier Bailly
Browse files

Add missing headers for compilation on x86 targets

Change-Id: I5f4dc797b353a0f01fa00d38375ec303bf863254
parent 609d8828
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@
 */

#include <errno.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
+2 −0
Original line number Diff line number Diff line
@@ -17,9 +17,11 @@
#include <errno.h>
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <linux/keychord.h>
#include <unistd.h>

#include "init.h"
#include "log.h"
+2 −0
Original line number Diff line number Diff line
@@ -17,6 +17,8 @@
#ifndef _INIT_LIST_H_
#define _INIT_LIST_H_

#include <stddef.h>

struct listnode
{
    struct listnode *next;
+1 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <netinet/in.h>
+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@
 */
#include <errno.h>
#include <string.h>
#include <stdlib.h>

#define LOG_TAG "FrameworkListener"

Loading