summaryrefslogtreecommitdiffstats
path: root/input
diff options
context:
space:
mode:
authorThomas Weißschuh <thomas@t-8ch.de>2023-02-18 19:29:01 +0000
committerDudemanguy <random342@airmail.cc>2023-02-20 14:21:18 +0000
commit9efce6d4ae26114a23f41f0b3b2d0d9f0281547b (patch)
tree3fa0143e0d2fcf56ea66f4ea0027ab3e9aceedf9 /input
parenta90355660c9d5a37ea3f24d6ef162baee4b09ab2 (diff)
downloadmpv-9efce6d4ae26114a23f41f0b3b2d0d9f0281547b.tar.bz2
mpv-9efce6d4ae26114a23f41f0b3b2d0d9f0281547b.tar.xz
various: drop unused #include "config.h"
Most sources don't need config.h. The inclusion only leads to lots of unneeded recompilation if the configuration is changed.
Diffstat (limited to 'input')
-rw-r--r--input/ipc-unix.c2
-rw-r--r--input/ipc-win.c2
-rw-r--r--input/ipc.c2
3 files changed, 0 insertions, 6 deletions
diff --git a/input/ipc-unix.c b/input/ipc-unix.c
index cd788e0061..5a638ea49f 100644
--- a/input/ipc-unix.c
+++ b/input/ipc-unix.c
@@ -26,8 +26,6 @@
#include <sys/stat.h>
#include <sys/un.h>
-#include "config.h"
-
#include "osdep/io.h"
#include "osdep/threads.h"
diff --git a/input/ipc-win.c b/input/ipc-win.c
index 9672ec85fe..aec754a281 100644
--- a/input/ipc-win.c
+++ b/input/ipc-win.c
@@ -18,8 +18,6 @@
#include <windows.h>
#include <sddl.h>
-#include "config.h"
-
#include "osdep/io.h"
#include "osdep/threads.h"
#include "osdep/windows_utils.h"
diff --git a/input/ipc.c b/input/ipc.c
index 34a10bbb00..baf68aaf48 100644
--- a/input/ipc.c
+++ b/input/ipc.c
@@ -15,8 +15,6 @@
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "config.h"
-
#include "common/msg.h"
#include "input/input.h"
#include "misc/json.h"