diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-17 12:38:59 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-17 13:28:16 -0600 |
commit | 7cbd849648d41c8b55b5b5fe618b8d20e75db868 (patch) | |
tree | 0fede0bc971d318053c1d75223372a6a44c64d47 /libmisc/include | |
parent | 037df4afccb4577351f8155a0b9a36825ac7eb15 (diff) |
Sort+align #includes
Diffstat (limited to 'libmisc/include')
-rw-r--r-- | libmisc/include/libmisc/hash.h | 4 | ||||
-rw-r--r-- | libmisc/include/libmisc/log.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libmisc/include/libmisc/hash.h b/libmisc/include/libmisc/hash.h index 91e6b10..58a895f 100644 --- a/libmisc/include/libmisc/hash.h +++ b/libmisc/include/libmisc/hash.h @@ -1,14 +1,14 @@ /* libmisc/hash.h - General-purpose hash utilities * - * Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com> + * Copyright (C) 2024-2025 Luke T. Shumaker <lukeshu@lukeshu.com> * SPDX-License-Identifier: AGPL-3.0-or-later */ #ifndef _LIBMISC_HASH_H_ #define _LIBMISC_HASH_H_ -#include <stdint.h> /* for uint{n}_t */ #include <stddef.h> /* for size_t */ +#include <stdint.h> /* for uint{n}_t */ /* djb2 hash */ typedef uint32_t hash_t; diff --git a/libmisc/include/libmisc/log.h b/libmisc/include/libmisc/log.h index e6dfb52..c40b642 100644 --- a/libmisc/include/libmisc/log.h +++ b/libmisc/include/libmisc/log.h @@ -9,9 +9,9 @@ #include <stdint.h> /* for uint8_t */ -#include <libmisc/macro.h> -#include <libmisc/fmt.h> #include <libmisc/_intercept.h> +#include <libmisc/fmt.h> +#include <libmisc/macro.h> #ifdef NDEBUG #define _LOG_NDEBUG 1 |