From 3b907cf0ec1cab7244069ae4395830da98925de0 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Mon, 4 Jun 2012 16:37:20 +0200 Subject: [PATCH] windows: guard against including handle-inl.h more than once --- src/win/handle-inl.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/win/handle-inl.h b/src/win/handle-inl.h index d59003fe..25829999 100644 --- a/src/win/handle-inl.h +++ b/src/win/handle-inl.h @@ -19,6 +19,9 @@ * IN THE SOFTWARE. */ +#ifndef UV_WIN_HANDLE_INL_H_ +#define UV_WIN_HANDLE_INL_H_ + #include #include "uv.h" @@ -102,3 +105,5 @@ INLINE static void uv_process_endgames(uv_loop_t* loop) { } } } + +#endif /* UV_WIN_HANDLE_INL_H_ */