diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-01-15 19:44:16 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-01-15 19:44:16 -0800 |
| commit | a2f30332ccb8f0d87dc7750d4f081d44fd771f7f (patch) | |
| tree | 79dc6723c322425bf078195315d67ea8e0463303 | |
| parent | 3d3a73e18cbebbaa89e7ed991d44ab5c0981f3a9 (diff) | |
Sorting imports
| -rw-r--r-- | bp.c | 6 | ||||
| -rw-r--r-- | definitions.c | 4 | ||||
| -rw-r--r-- | files.c | 1 | ||||
| -rw-r--r-- | match.c | 2 | ||||
| -rw-r--r-- | print.c | 2 |
5 files changed, 8 insertions, 7 deletions
@@ -12,13 +12,13 @@ #include <string.h> #include <unistd.h> -#include "pattern.h" -#include "files.h" #include "definitions.h" +#include "files.h" #include "json.h" +#include "match.h" +#include "pattern.h" #include "print.h" #include "utils.h" -#include "match.h" #ifndef BP_NAME #define BP_NAME "bp" diff --git a/definitions.c b/definitions.c index b2c777d..7ce8ba6 100644 --- a/definitions.c +++ b/definitions.c @@ -5,9 +5,9 @@ #include <stdlib.h> #include <string.h> -#include "pattern.h" -#include "files.h" #include "definitions.h" +#include "files.h" +#include "pattern.h" #include "utils.h" // @@ -13,6 +13,7 @@ #include <unistd.h> #include "files.h" +#include "pattern.h" #include "utils.h" __attribute__((nonnull)) @@ -8,9 +8,9 @@ #include <string.h> #include "definitions.h" +#include "match.h" #include "types.h" #include "utils.h" -#include "match.h" #ifdef DEBUG_HEAP // Doubly-linked list operations: @@ -6,10 +6,10 @@ #include <stdlib.h> #include <string.h> +#include "match.h" #include "print.h" #include "types.h" #include "utils.h" -#include "match.h" typedef struct match_node_s { match_t *m; |
