Add cdefs decoration to list.h
In case someone includes this from C++ code. Change-Id: I3b5a8bde5b5b9e8dcee64abaf33383f21eff7046
This commit is contained in:
parent
1a87808b30
commit
0009b73ed8
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue