From bae668ee2ad5c5cfd9f01a3539d2dd005446aa01 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Tue, 4 Jul 2017 16:21:45 +0200 Subject: add missing include guards --- win32/select.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'win32/select.h') diff --git a/win32/select.h b/win32/select.h index 1250444055..ac0572f819 100644 --- a/win32/select.h +++ b/win32/select.h @@ -18,10 +18,15 @@ /* $Id$ */ +#ifndef PHP_WIN32_SELECT_H +#define PHP_WIN32_SELECT_H + #include "php_network.h" PHPAPI int php_select(php_socket_t max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv); +#endif + /* * Local variables: * tab-width: 4 -- cgit v1.2.1