From 3db24b460359e12f35a70d24afc76533895b365e Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser <kaspar@schleiser.de> Date: Sat, 21 Jul 2018 08:50:07 +0200 Subject: [PATCH] sys: saul: add missing stddef.h include (for NULL) --- sys/saul_reg/saul_reg.c | 1 + sys/shell/commands/sc_saul_reg.c | 1 + 2 files changed, 2 insertions(+) diff --git a/sys/saul_reg/saul_reg.c b/sys/saul_reg/saul_reg.c index 40f521ebf2..729a7edf53 100644 --- a/sys/saul_reg/saul_reg.c +++ b/sys/saul_reg/saul_reg.c @@ -18,6 +18,7 @@ * @} */ +#include <stddef.h> #include <stdio.h> #include <stdint.h> #include <string.h> diff --git a/sys/shell/commands/sc_saul_reg.c b/sys/shell/commands/sc_saul_reg.c index 7922292eca..b1f1adbf72 100644 --- a/sys/shell/commands/sc_saul_reg.c +++ b/sys/shell/commands/sc_saul_reg.c @@ -19,6 +19,7 @@ * @} */ +#include <stddef.h> #include <stdio.h> #include <string.h> #include <stdlib.h> -- GitLab