selfhost: resync smoke.combined.ww to current lib/types (#110)

#28 regen'd the 5 cmd combined.ww but missed smoke, which pulls lib/types transitively. Baseline for the freshness gate below.
This commit is contained in:
2026-05-26 01:07:25 +09:00
parent 330792b884
commit 529eb51af3

View File

@@ -748,6 +748,13 @@ def U16_MAX: u16 = 65535;
def U32_MAX: u32 = 4294967295;
def U64_MAX: u64 = 18446744073709551615;
def U8_MIN: u8 = 0;
def U16_MIN: u16 = 0;
def U32_MIN: u32 = 0;
def U64_MIN: u64 = 0;
def RUNE_MIN: rune = '\0';
// bytes — slice operations over []u8. Mirrors Hare's bytes module
// (ref/hare/bytes/) for the in-tree subset: search/equality/prefix
// helpers used by lib/encoding, lib/bufio, lib/memio.