summaryrefslogtreecommitdiffstats
path: root/test cases/common/215 source set realistic example/devices/virtio.h
blob: a157731fed679def1e9a7bdf9c0a3af895776473 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef VIRTIO_H
#define VIRTIO_H 1

#include "common.h"

struct VirtioDevice: Device {
    void some_virtio_thing();
};

#endif