aboutsummaryrefslogtreecommitdiff
path: root/lib/std/os/uefi/protocols/absolute_pointer_protocol.zig
AgeCommit message (Collapse)Author
2022-01-16std/os/uefi: Simplify packed struct padding and default zero-initializefifty-six
Beyond adding default zero-initialization, this commit changes undefined initialization to zero, as some cases reserved the padding and on other cases, I've found some systems act strange when giving uninit instead of zero even when it shouldn't be an issue, one example being FileProtocol.Open's attributes, which *should* be ignored when not creating a file, but ended up giving an unrelated error.
2021-08-24remove redundant license headers from zig standard libraryAndrew Kelley
We already have a LICENSE file that covers the Zig Standard Library. We no longer need to remind everyone that the license is MIT in every single file. Previously this was introduced to clarify the situation for a fork of Zig that made Zig's LICENSE file harder to find, and replaced it with their own license that required annual payments to their company. However that fork now appears to be dead. So there is no need to reinforce the copyright notice in every single file.
2021-06-30std/os/uefi: fix packed struct bitfieldsNameless
2020-12-31Year++Frank Denis
2020-08-20add license header to all std lib filesAndrew Kelley
add SPDX license identifier copyright ownership is zig contributors
2020-05-05zig fmtTadeo Kondrak
2020-03-12std/os/uefi: status reformNick Erdmann
2019-10-16std/os/uefi: add documentationNick Erdmann
2019-09-25mv std/ lib/Andrew Kelley
that's all this commit does. further commits will fix cli flags and such. see #2221