From 1974541bc933c21e559ceb18ada06b0939e23a43 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Mon, 4 Jun 2012 16:37:47 +0200 Subject: [PATCH] windows: guard against including req-inl.h more than once --- src/win/req-inl.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/win/req-inl.h b/src/win/req-inl.h index dbead2df..85b8a15e 100644 --- a/src/win/req-inl.h +++ b/src/win/req-inl.h @@ -19,6 +19,9 @@ * IN THE SOFTWARE. */ +#ifndef UV_WIN_REQ_INL_H_ +#define UV_WIN_REQ_INL_H_ + #include #include "uv.h" @@ -167,3 +170,5 @@ INLINE static void uv_process_reqs(uv_loop_t* loop) { } } } + +#endif /* UV_WIN_REQ_INL_H_ */