diff options
author | Richard Braun <rbraun@sceen.net> | 2017-12-18 00:34:53 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-12-18 00:34:53 +0100 |
commit | d6176a972708c34ed06a644c07b19a4bd0eae37c (patch) | |
tree | c7a48ba3f3c9b4537ef1de61a2e706d07124fd57 | |
parent | 356bf53ba569a94862b0b6ad98e5ef1592690a4b (diff) |
shell: fix header inclusions
-rw-r--r-- | shell.c | 2 | ||||
-rw-r--r-- | shell.h | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -24,7 +24,9 @@ */ #include <pthread.h> +#include <stddef.h> #include <stdio.h> +#include <stdint.h> #include <string.h> #include "macros.h" @@ -29,6 +29,8 @@ #ifndef _SHELL_H #define _SHELL_H +#include <stddef.h> + typedef void (*shell_fn_t)(int argc, char *argv[]); struct shell_cmd { |