diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-04-20 14:58:32 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-04-20 14:58:32 -0400 |
| commit | 2dd9392ef91b953ad5741fa8a955cfd7694a2e05 (patch) | |
| tree | 4c058d3c38fd1ac8528317a29c923e405ab57887 /builtins/table.h | |
| parent | ff3e1c13284ba25841e35eccf435a15f8d17b1b9 (diff) | |
Fix USE_COLOR
Diffstat (limited to 'builtins/table.h')
| -rw-r--r-- | builtins/table.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/builtins/table.h b/builtins/table.h index f51a8b31..5de87dc8 100644 --- a/builtins/table.h +++ b/builtins/table.h @@ -6,11 +6,10 @@ #include <stdbool.h> #include <string.h> -#include "types.h" -#include "datatypes.h" #include "array.h" - -extern bool USE_COLOR; +#include "datatypes.h" +#include "types.h" +#include "util.h" #define Table(key_t, val_t, key_info, value_info, fb, def, N, ...) ({ \ struct { key_t k; val_t v; } ents[N] = {__VA_ARGS__}; \ |
