1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

fix(evdev): add missing include for strerror (#6047)

This commit is contained in:
Niklas Fiekas 2024-04-15 18:36:08 +02:00 committed by GitHub
parent b9c41e2666
commit 4f68cd6367
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,6 +12,7 @@
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include <sys/param.h> /*To detect BSD*/
#ifdef BSD
#include <dev/evdev/input.h>