From 582a2070a7f792f044fd1ee07a8e0bcfbfa32ee4 Mon Sep 17 00:00:00 2001 From: Stéphane Aulery Date: Thu, 27 Nov 2014 14:52:11 +0100 Subject: Add missing stddef.h header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - misc.h use offsetof() - other use NUUL, size_t and wchar_t Signed-off-by: Stéphane Aulery Signed-off-by: Gerd Hoffmann --- misc.h | 1 + 1 file changed, 1 insertion(+) (limited to 'misc.h') diff --git a/misc.h b/misc.h index 92a66bc..98c6455 100644 --- a/misc.h +++ b/misc.h @@ -1,6 +1,7 @@ /* * misc useful #defines ... */ +#include #define container_of(ptr, type, member) ({ \ const typeof( ((type *)0)->member ) *__mptr = (ptr); \ -- cgit