mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
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.
15 lines
1.1 KiB
Zig
15 lines
1.1 KiB
Zig
pub const AllocateType = @import("tables/boot_services.zig").AllocateType;
|
|
pub const BootServices = @import("tables/boot_services.zig").BootServices;
|
|
pub const ConfigurationTable = @import("tables/configuration_table.zig").ConfigurationTable;
|
|
pub const global_variable align(8) = @import("tables/runtime_services.zig").global_variable;
|
|
pub const LocateSearchType = @import("tables/boot_services.zig").LocateSearchType;
|
|
pub const MemoryDescriptor = @import("tables/boot_services.zig").MemoryDescriptor;
|
|
pub const MemoryType = @import("tables/boot_services.zig").MemoryType;
|
|
pub const OpenProtocolAttributes = @import("tables/boot_services.zig").OpenProtocolAttributes;
|
|
pub const ProtocolInformationEntry = @import("tables/boot_services.zig").ProtocolInformationEntry;
|
|
pub const ResetType = @import("tables/runtime_services.zig").ResetType;
|
|
pub const RuntimeServices = @import("tables/runtime_services.zig").RuntimeServices;
|
|
pub const SystemTable = @import("tables/system_table.zig").SystemTable;
|
|
pub const TableHeader = @import("tables/table_header.zig").TableHeader;
|
|
pub const TimerDelay = @import("tables/boot_services.zig").TimerDelay;
|