From 6f5c9f6f805d4784be3b3058a628761ad508c927 Mon Sep 17 00:00:00 2001 From: Ivan Velickovic Date: Mon, 13 Nov 2023 14:50:07 +1100 Subject: [PATCH] examples/zig: remove unused struct --- examples/zig/src/vmm.zig | 5 ----- 1 file changed, 5 deletions(-) diff --git a/examples/zig/src/vmm.zig b/examples/zig/src/vmm.zig index c88f49be..47572e23 100644 --- a/examples/zig/src/vmm.zig +++ b/examples/zig/src/vmm.zig @@ -40,11 +40,6 @@ const guest_dtb_image = @embedFile("linux.dtb"); // Data for the initial RAM disk to be passed to the kernel. const guest_initrd_image = @embedFile("rootfs.cpio.gz"); -const LinuxKernelImage = extern struct { - header: c.linux_image_header, - bytes: *u8 -}; - // In Zig the standard library comes with printf-like functionality with the // ability to provide your own function to ouput the characters. This is // extremely useful for us! Without changing the standard library or bringing