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

LibC: iconv.h needs stddef.h for size_t

This commit is contained in:
Andreas Kling 2019-11-10 13:07:51 +01:00
parent 528e6b27f6
commit 12e0fab580

View file

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