Add missing include on sys/types.h to fix build on Musl libc

I guess sys/types.h is implicitely included on glibc but that's definitely
not the case on Musl libc. The include is however necessary to define
dev_t introduced in 3c82d5a919
This commit is contained in:
Bart Ribbers 2024-03-24 20:09:20 +01:00
parent a2cccf0d75
commit d71243aa07

View file

@ -9,6 +9,7 @@
#pragma once
#include <QString>
#include <sys/types.h>
#include "graphicsbufferallocator.h"
#include "kwin_export.h"