aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2017-06-28 00:24:57 +0200
committerRon Yorston <rmy@pobox.com>2017-08-23 12:57:21 +0100
commit056d2ff0743dc5e09c87b2e846e5dd17ce4f20c0 (patch)
treeae01899a8e7d69a5994e047e2412ba45c892c0ea
parent0f9b26911deb86f03934c081eb4ae49f1de29243 (diff)
downloadbusybox-w32-056d2ff0743dc5e09c87b2e846e5dd17ce4f20c0.tar.gz
busybox-w32-056d2ff0743dc5e09c87b2e846e5dd17ce4f20c0.tar.bz2
busybox-w32-056d2ff0743dc5e09c87b2e846e5dd17ce4f20c0.zip
win32/select: ensure that the implementation matches the prototype
The libbb.h header implicitly includes mingw.h, which has the declaration of that function. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Ron Yorston <rmy@pobox.com>
-rw-r--r--win32/select.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/select.c b/win32/select.c
index a7e30182d..2c9d2d873 100644
--- a/win32/select.c
+++ b/win32/select.c
@@ -18,6 +18,7 @@
18 You should have received a copy of the GNU General Public License along 18 You should have received a copy of the GNU General Public License along
19 with this program; if not, see <http://www.gnu.org/licenses/>. */ 19 with this program; if not, see <http://www.gnu.org/licenses/>. */
20 20
21#include "libbb.h"
21#include <malloc.h> 22#include <malloc.h>
22#include <assert.h> 23#include <assert.h>
23 24