mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
* std.os.uefi: integer backed structs, add tests to catch regressions device_path_protocol now uses extern structs with align(1) fields because the transition to integer backed packed struct broke alignment added comptime asserts that device_path_protocol structs do not violate alignment and size specifications
9 lines
355 B
Zig
9 lines
355 B
Zig
pub usingnamespace @import("tables/boot_services.zig");
|
|
pub usingnamespace @import("tables/runtime_services.zig");
|
|
pub usingnamespace @import("tables/configuration_table.zig");
|
|
pub usingnamespace @import("tables/system_table.zig");
|
|
pub usingnamespace @import("tables/table_header.zig");
|
|
|
|
test {
|
|
@import("std").testing.refAllDeclsRecursive(@This());
|
|
}
|