diff options
author | Tom Rini <trini@konsulko.com> | 2024-04-27 08:11:03 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-06 15:05:04 -0600 |
commit | 0f92fa4560335f04858bfc9881e0bc6bbb756b3f (patch) | |
tree | 4322d4da2d2ea85698a241208b69b8aa892cab4c /env/attr.c | |
parent | c4b646d43608500145b3934c9db2ee82aab3a837 (diff) |
env: Remove <common.h> and add needed includes
Remove <common.h> from all "env/" files and when needed add
missing include files directly.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'env/attr.c')
-rw-r--r-- | env/attr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/env/attr.c b/env/attr.c index a958c714828..fed5b212e2f 100644 --- a/env/attr.c +++ b/env/attr.c @@ -4,13 +4,13 @@ * Joe Hershberger, National Instruments, joe.hershberger@ni.com */ +#include <stdio.h> #ifdef USE_HOSTCC /* Eliminate "ANSI does not permit..." warnings */ #include <stdint.h> -#include <stdio.h> #include <linux/linux_string.h> #else -#include <common.h> #include <slre.h> +#include <vsprintf.h> #endif #include <env_attr.h> |