diff options
author | David Robillard <d@drobilla.net> | 2023-04-30 18:52:45 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-05-01 18:58:58 -0400 |
commit | 465b1f57b73d130f5b82cca4930d5f95332e27d0 (patch) | |
tree | 0c52790c23e4e40d7aa3ddfacb4a4f6d6b50a4f2 /src | |
parent | 80a3fa1006048026a5bc8cf69612be587029e855 (diff) | |
download | lilv-465b1f57b73d130f5b82cca4930d5f95332e27d0.tar.gz lilv-465b1f57b73d130f5b82cca4930d5f95332e27d0.tar.bz2 lilv-465b1f57b73d130f5b82cca4930d5f95332e27d0.zip |
Fix include-what-you-use warnings
Diffstat (limited to 'src')
-rw-r--r-- | src/util.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -16,12 +16,11 @@ #include <errno.h> #include <stdarg.h> #include <stdbool.h> -#include <stddef.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <time.h> +#include <time.h> // IWYU pragma: keep void lilv_free(void* ptr) |