diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-03-06 17:21:10 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-02 20:44:53 -0600 |
commit | 797164f75b91c5cdfb68fc91d6853e7609d97e12 (patch) | |
tree | a136f9273d6ed8c85d31a8d0b9c1d80234b3fb17 /libmisc/assert.c | |
parent | ece605ec021de84aa1a9e282f342c38505ba794b (diff) |
Add libfmt to bypass output buffering for libmisc:assert
Diffstat (limited to 'libmisc/assert.c')
-rw-r--r-- | libmisc/assert.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libmisc/assert.c b/libmisc/assert.c index 69c0530..fdd8154 100644 --- a/libmisc/assert.c +++ b/libmisc/assert.c @@ -1,6 +1,6 @@ /* libmisc/assert.c - More assertions * - * 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 */ @@ -12,6 +12,7 @@ #include <libmisc/assert.h> #ifndef NDEBUG +#define __lm_printf __lm_light_printf void __assert_msg_fail(const char *expr, const char *file, unsigned int line, const char *func, const char *msg) { |