diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-13 00:34:06 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-15 14:49:04 -0600 |
commit | 22336fb34f464dc751f86ad552fa1e40f06921ed (patch) | |
tree | 16eb74c38cc850c5f603ef366593b96db0273042 /build-aux/measurestack/app_main.py | |
parent | 5415686b41adb8c75a6c1da999aeddd6894b3010 (diff) |
libmisc: Invent fmt.h to replace printf
Diffstat (limited to 'build-aux/measurestack/app_main.py')
-rw-r--r-- | build-aux/measurestack/app_main.py | 5 |
1 files changed, 5 insertions, 0 deletions
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] = [] |