LibC: Add missing include in utime.h

<sys/types.h> declares the `utimbuf` struct used by this header.

Fixes #25899
This commit is contained in:
Sönke Holz
2025-04-23 17:34:36 +02:00
committed by Nico Weber
parent fc0826cfa9
commit 5b78579a61

View File

@@ -7,6 +7,7 @@
#pragma once
#include <sys/cdefs.h>
#include <sys/types.h>
__BEGIN_DECLS