AK: Fix missing ptrdiff_t in non-Serenity builds

We have to include <stddef.h> to get its definition.
This commit is contained in:
Sergey Bugaev 2020-06-12 16:21:49 +03:00 committed by Andreas Kling
parent 08f29be87a
commit 4d65466f02

View file

@ -63,6 +63,7 @@ typedef int pid_t;
#else
# include <stdint.h>
# include <stddef.h>
# include <sys/types.h>
# ifdef __ptrdiff_t