Explicitly include sys/select.h where needed

... rather than relying on it to be included via sys/time.h or sys/types.h.
This commit is contained in:
Kim Woelders 2019-07-30 17:39:47 +02:00
parent c423cd13f6
commit c67ebd88ba
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
/*
* Copyright (C) 2000-2007 Carsten Haitzler, Geoff Harrison and various contributors
* Copyright (C) 2004-2018 Kim Woelders
* Copyright (C) 2004-2019 Kim Woelders
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
@ -23,6 +23,7 @@
*/
#include "config.h"
#include <sys/select.h>
#include <sys/time.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>