From: Thomas Weißschuh Date: Sun, 28 Apr 2024 21:18:48 +0000 (+0200) Subject: buffer: replace include of c.h with stddef.h X-Git-Tag: v2.42-start~371^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a23577c64708e43dd5e35ea7256f1f366f00a38e;p=thirdparty%2Futil-linux.git buffer: replace include of c.h with stddef.h The interface of the buffer library only requires size_t. It's enough to include stddef.h for that. Signed-off-by: Thomas Weißschuh --- diff --git a/include/buffer.h b/include/buffer.h index b122da4eb..1c1be3112 100644 --- a/include/buffer.h +++ b/include/buffer.h @@ -5,7 +5,7 @@ #ifndef UTIL_LINUX_BUFFER #define UTIL_LINUX_BUFFER -#include "c.h" +#include struct ul_buffer { char *begin; /* begin of the data */