Move UC_INLINE to utils.h

This commit is contained in:
Nils O. Selåsdal
2015-01-03 01:51:18 +01:00
parent 33287ea987
commit a367e84b00
4 changed files with 14 additions and 38 deletions
+2 -13
View File
@@ -1,17 +1,8 @@
#ifndef UC_TAILQ_H_
#define UC_TAILQ_H_
#ifndef UC_INLINE
#ifdef __GNUC__
# ifdef __clang__
# define UC_INLINE inline __attribute__((always_inline))
# else
# define UC_INLINE inline __attribute__((always_inline,flatten))
# endif
#else
# define UC_INLINE inline
#endif
#endif
#include "utils.h"
/**
* Doubly Linked List.
* It is used either as
@@ -253,6 +244,4 @@ static UC_INLINE void uc_tailq_move_tail(struct TailQ *entry, struct TailQ *head
(ptr) = (prv),\
(prv) = UC_TAILQ_CONTAINER(UC_TAILQ_NEXT(&(ptr)->member), typeof(*ptr), member))
#undef UC_INLINE
#endif