core/graphicsbuffer: add missing unistd.h include

Fixes an error: use of undeclared identifier 'ftruncate' under Chimera
Linux which uses the musl C standard library.
This commit is contained in:
Jami Kettunen 2023-10-23 20:38:11 +03:00 committed by Xaver Hugl
parent ad45dcb40b
commit 8cc1c7eca7

View file

@ -13,6 +13,7 @@
#include <drm_fourcc.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/mman.h>
namespace KWin