summaryrefslogtreecommitdiff
path: root/Libraries/LibC/iconv.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-11-10 13:07:51 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-11-10 13:07:51 +0100
commit12e0fab5808e018b34f7b514151155261fb9067f (patch)
treeed108c207f87d30619883fdcc996afd85b8023c7 /Libraries/LibC/iconv.h
parent528e6b27f6fb4ea53392926cf2cbce5ac8405cd4 (diff)
downloadserenity-12e0fab5808e018b34f7b514151155261fb9067f.zip
LibC: iconv.h needs stddef.h for size_t
Diffstat (limited to 'Libraries/LibC/iconv.h')
-rw-r--r--Libraries/LibC/iconv.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibC/iconv.h b/Libraries/LibC/iconv.h
index 70831a2565..438868fd83 100644
--- a/Libraries/LibC/iconv.h
+++ b/Libraries/LibC/iconv.h
@@ -1,6 +1,7 @@
#pragma once
#include <sys/cdefs.h>
+#include <stddef.h>
__BEGIN_DECLS