diff options
author | dzwdz | 2022-08-11 22:39:12 +0200 |
---|---|---|
committer | dzwdz | 2022-08-11 22:39:12 +0200 |
commit | d170ceb6c9f26f222558012ccbb75614ec2a6b8f (patch) | |
tree | c7f41a46109ee6e4dd237a94184cc1c9c1815996 /src/user/app/shell | |
parent | 162395700b100943eb019ce2b363f4d6ed03ab1a (diff) |
shared/header: don't mix kinds of declarations between headers
syscalls.h shouldn't define a random struct etc
Diffstat (limited to 'src/user/app/shell')
-rw-r--r-- | src/user/app/shell/shell.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/user/app/shell/shell.c b/src/user/app/shell/shell.c index 0f97d7a..0c92410 100644 --- a/src/user/app/shell/shell.c +++ b/src/user/app/shell/shell.c @@ -1,5 +1,6 @@ #include "builtins.h" #include "shell.h" +#include <camellia/flags.h> #include <camellia/syscalls.h> #include <errno.h> #include <stdbool.h> |