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

Commit 418fbe66 authored by Kenny Root's avatar Kenny Root Committed by Android (Google) Code Review
Browse files

Merge "Add cdefs decoration to list.h"

parents 5e0621f7 0009b73e
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -18,6 +18,9 @@
#define _CUTILS_LIST_H_

#include <stddef.h>
#include <sys/cdefs.h>

__BEGIN_DECLS

struct listnode
{
@@ -48,4 +51,6 @@ void list_remove(struct listnode *item);
#define list_head(list) ((list)->next)
#define list_tail(list) ((list)->prev)

__END_DECLS

#endif