diff options
Diffstat (limited to 'include/sysemu/rng-random.h')
-rw-r--r-- | include/sysemu/rng-random.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/sysemu/rng-random.h b/include/sysemu/rng-random.h new file mode 100644 index 000000000..0fdc6c697 --- /dev/null +++ b/include/sysemu/rng-random.h @@ -0,0 +1,21 @@ +/* + * QEMU Random Number Generator Backend + * + * Copyright IBM, Corp. 2012 + * + * Authors: + * Anthony Liguori <aliguori@us.ibm.com> + * + * This work is licensed under the terms of the GNU GPL, version 2 or later. + * See the COPYING file in the top-level directory. + */ +#ifndef QEMU_RNG_RANDOM_H +#define QEMU_RNG_RANDOM_H + +#include "qom/object.h" + +#define TYPE_RNG_RANDOM "rng-random" +OBJECT_DECLARE_SIMPLE_TYPE(RngRandom, RNG_RANDOM) + + +#endif |