Build date: 1762383603 - Wed Nov 5 23:00:03 UTC 2025 Build cvs date: 1762362645 - Wed Nov 5 17:10:45 UTC 2025 Build id: 2025-11-06.1 Build tags: amd64-regress ports sysupgrade Applied the following diff(s): /home/anton/tmp/robsd/src-sys-em.diff /home/anton/tmp/robsd/src-sys-uhidev-sispm.diff /home/anton/tmp/robsd/src-sysupgrade.diff P lib/libcrypto/bn/bn.h P regress/lib/libcrypto/bn/bn_print.c M sys/dev/usb/uhidev.c P usr.bin/m4/gnum4.c P usr.bin/m4/look.c P usr.bin/m4/misc.c P usr.bin/m4/tokenizer.l P usr.bin/m4/trace.c M usr.sbin/bgpd/session.c commit kuKI6Gj3ctd1VY8e Author: tb Date: 2025/11/05 17:10:45 Fix -Wstrict-prototype warnings Add void to functions without parameters. mostly from espie (+ missing fix for enlarge_bufspace()) usr.bin/m4/gnum4.c usr.bin/m4/look.c usr.bin/m4/misc.c usr.bin/m4/tokenizer.l usr.bin/m4/trace.c commit USCPLWqYCBhKNefJ Author: tb Date: 2025/11/05 17:04:54 Mark onintr's unused signo as such from espie (part of a larger diff) usr.bin/m4/misc.c commit lMU8F4hatsTU4euF Author: jsing Date: 2025/11/05 13:00:26 Use more specific types for BN. Be specific about width and use uint64_t/uint32_t, rather than using unsigned int/long/long long, based on platform. Additionally use UINT64_C() and UINT32_C() for constants, along with PRI*64/PRI*32 for formatting. This makes the platform responsible for providing the correct types/defines - all we then need to do is determine is if BN should use a 32 bit or 64 bit configuration. With input from and ok tb@ lib/libcrypto/bn/bn.h commit 20AW9BuvueFU5JNo Author: jsing Date: 2025/11/05 11:40:47 Avoid the use of _LP64 in libcrypto regress. What the tests actually care about is the size of a BN_ULONG, hence condition on BN_BYTES instead. Discussed with tb@ regress/lib/libcrypto/bn/bn_print.c