tools: env: bug: config structs must be defined in tools library
[platform/kernel/u-boot.git] / tools / env / fw_env.c
index 5c7505c..1420ac5 100644 (file)
 
 #include "fw_env.h"
 
+struct common_args common_args;
+struct printenv_args printenv_args;
+struct setenv_args setenv_args;
+
 #define DIV_ROUND_UP(n, d)     (((n) + (d) - 1) / (d))
 
 #define min(x, y) ({                           \