From 22336fb34f464dc751f86ad552fa1e40f06921ed Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Tue, 13 May 2025 00:34:06 -0600 Subject: libmisc: Invent fmt.h to replace printf --- build-aux/measurestack/app_main.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'build-aux/measurestack/app_main.py') diff --git a/build-aux/measurestack/app_main.py b/build-aux/measurestack/app_main.py index f705876..f933967 100644 --- a/build-aux/measurestack/app_main.py +++ b/build-aux/measurestack/app_main.py @@ -94,6 +94,11 @@ def main( QName("fmt_vsnprintf"), ]: return 1, False + for prefix in ["fmt_print_", "_fmt_print_"]: + if str(name.base()).startswith(prefix): + return 1, False + if str(name.base()).endswith("_putb"): + return 1, False return 0, False extra_includes: list[BaseName] = [] -- cgit v1.2.3-2-g168b