···1# This creates the demonstration utility "lguest" which runs a Linux guest.2-CFLAGS:=-Wall -Wmissing-declarations -Wmissing-prototypes -O3 -I../../include3LDLIBS:=-lz45all: lguest
···1# This creates the demonstration utility "lguest" which runs a Linux guest.2+CFLAGS:=-Wall -Wmissing-declarations -Wmissing-prototypes -O3 -I../../include -I../../arch/x86/include3LDLIBS:=-lz45all: lguest
+1-1
Documentation/lguest/lguest.c
···44#include "linux/virtio_console.h"45#include "linux/virtio_rng.h"46#include "linux/virtio_ring.h"47-#include "asm-x86/bootparam.h"48/*L:110 We can ignore the 39 include files we need for this program, but I do49 * want to draw attention to the use of kernel-style types.50 *
···44#include "linux/virtio_console.h"45#include "linux/virtio_rng.h"46#include "linux/virtio_ring.h"47+#include "asm/bootparam.h"48/*L:110 We can ignore the 39 include files we need for this program, but I do49 * want to draw attention to the use of kernel-style types.50 *