1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:07:45 +00:00

LibCore: Add missing <utime.h> include to System.h

This commit is contained in:
Andreas Kling 2021-12-21 01:27:51 +01:00
parent bcd49ad834
commit 7f5d060450

View file

@ -16,6 +16,7 @@
#include <sys/wait.h> #include <sys/wait.h>
#include <termios.h> #include <termios.h>
#include <time.h> #include <time.h>
#include <utime.h>
namespace Core::System { namespace Core::System {