mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00
11 lines
291 B
C
11 lines
291 B
C
#include "qemu-common.h"
|
|
#include "qemu/main-loop.h"
|
|
|
|
int qemu_set_fd_handler2(int fd,
|
|
IOCanReadHandler *fd_read_poll,
|
|
IOHandler *fd_read,
|
|
IOHandler *fd_write,
|
|
void *opaque)
|
|
{
|
|
abort();
|
|
}
|