mirror of
https://github.com/ziglang/zig.git
synced 2025-12-24 23:23:07 +00:00
7 lines
180 B
Zig
7 lines
180 B
Zig
const feature = @import("std").target.feature;
|
|
const CpuInfo = @import("std").target.cpu.CpuInfo;
|
|
|
|
pub const EmptyCpu = enum {
|
|
pub const cpu_infos = [0]CpuInfo(@This()) {};
|
|
};
|