fix(util.h): use standard system header

Use standard sys/time.h instead of libc specific header bits/types/... for musl compatibility
This commit is contained in:
grialion
2025-07-09 23:07:32 +02:00
parent ecf254bf7f
commit 3f264a66b9

View File

@@ -1,11 +1,11 @@
#ifndef UTILH_
#define UTILH_
#include <bits/types/struct_timeval.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <sys/time.h>
#include <sys/types.h>
#include "keys.h"