diff options
Diffstat (limited to 'libmisc/log.c')
-rw-r--r-- | libmisc/log.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libmisc/log.c b/libmisc/log.c index ff4dac6..be87de6 100644 --- a/libmisc/log.c +++ b/libmisc/log.c @@ -1,17 +1,13 @@ /* libmisc/log.c - stdio logging * - * 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 */ -#include <stdio.h> /* for vprintf() */ -#include <stdarg.h> /* for va_list, va_start(), va_end() */ +#include <stdint.h> /* for uint{n}_t */ #include <libmisc/assert.h> /* for static_assert() */ -#define LOG_NAME -#include <libmisc/log.h> - static const char *byte_strs[] = { "0x00", "0x01", |