From ed30365f543819e70769df96ef2c5b018681960e Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Sat, 2 Jun 2012 23:06:43 +0200 Subject: [PATCH] uv-common: define INLINE macro --- src/uv-common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/uv-common.h b/src/uv-common.h index 4a721ef9..c86cb7da 100644 --- a/src/uv-common.h +++ b/src/uv-common.h @@ -42,8 +42,10 @@ #ifdef _MSC_VER # define UNUSED /* empty */ +# define INLINE __inline #else # define UNUSED __attribute__((unused)) +# define INLINE inline #endif